Created
July 16, 2019 16:14
-
-
Save reinink/2cae7771c73771e1f5c8952341bc360c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Database\Query\Builder; | |
Builder::macro('orderByNulls', function ($column, $direction = 'asc', $nulls = 'last', $bindings = []) { | |
$column = $this->getGrammar()->wrap($column); | |
$direction = strtolower($direction) === 'asc' ? 'asc' : 'desc'; | |
$nulls = strtolower($nulls) === 'first' ? 'NULLS FIRST' : 'NULLS LAST'; | |
return $this->orderByRaw("$column $direction $nulls", $bindings); | |
}); | |
Builder::macro('orderByNullsLast', function ($column, $direction = 'asc', $bindings = []) { | |
return $this->orderByNulls($column, $direction, 'last', $bindings); | |
}); | |
Builder::macro('orderByNullsFirst', function ($column, $direction = 'asc', $bindings = []) { | |
return $this->orderByNulls($column, $direction, 'first', $bindings); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment