Download the PHP package reinink/advanced-eloquent without Composer
On this page you can find all versions of the php package reinink/advanced-eloquent. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package advanced-eloquent
Advanced Eloquent
A set of advanced Eloquent macros for Laravel.
⚠️ Note, I've brought much of the functionality provided by this package to Laravel core, in particular the subquery functionality, which has pretty much made this package obsolete. If you want to learn more about these features, be sure to see my Eloquent Peformance Patterns course, which covers these techniques and others in detail.
Installation
You can install this package via Composer:
This package uses auto-discovery, so there is no further configuration required.
API
addSubSelect($column, $query)
$columnmust be a string.$querymust either be an instance ofIlluminate\Database\Query\BuilderorIlluminate\Database\Eloquent\Builder.
orderBySub($query, $direction = 'asc', $nullPosition = null)
$querymust either be an instance ofIlluminate\Database\Query\BuilderorIlluminate\Database\Eloquent\Builder.$directionmust either be'asc'or'desc'.$nullPositionmust either benull,'first'or'last'.
orderBySubAsc($query, $nullPosition = null)
$querymust either be an instance ofIlluminate\Database\Query\BuilderorIlluminate\Database\Eloquent\Builder.$nullPositionmust either benull,'first'or'last'.
orderBySubDesc($query, $nullPosition = null)
$querymust either be an instance ofIlluminate\Database\Query\BuilderorIlluminate\Database\Eloquent\Builder.$nullPositionmust either benull,'first'or'last'.
Note: Null positions (NULLS FIRST and NULLS LAST) are not supported by all databases (ie. MySQL and SQLite), but are supported by PostgreSQL and others.
Examples
Get a user's last login date using a subquery:
Same example as above, except using the query builder instead:
Order users by their company name using a subquery:
Order users by their last login date, with null values last: