Guest User

Untitled

a guest
Nov 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. public function scopeOfSort($query, $sort)
  4. {
  5. foreach ($sort as $column => $direction) {
  6. $query->orderBy($column, $direction);
  7. }
  8.  
  9. return $query;
  10. }
Add Comment
Please, Sign In to add comment