Skip to content

Instantly share code, notes, and snippets.

@reinink
Created July 16, 2019 16:14
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save reinink/2cae7771c73771e1f5c8952341bc360c to your computer and use it in GitHub Desktop.
Save reinink/2cae7771c73771e1f5c8952341bc360c to your computer and use it in GitHub Desktop.
<?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