Skip to content

Instantly share code, notes, and snippets.

@emersoncoder
Created August 21, 2017 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emersoncoder/edf6b3603fbf392b5088c32f96bf8dbc to your computer and use it in GitHub Desktop.
Save emersoncoder/edf6b3603fbf392b5088c32f96bf8dbc to your computer and use it in GitHub Desktop.
query
$batches = BatchPayoutRequest::has('payout_requests')
->orderBy('created_at', 'desc')
->paginate()
->sortBy(function($batch){
return $batch->status == Status::PROCESSING;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment