Advertisement
majweb

Untitled

Oct 9th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public function getEvents($day)
  2. {
  3. return Event::with('user','gym')->select('id','title','start','user_id','gym_id')->get()
  4. ->groupBy(function($day) {
  5. setlocale(LC_TIME, 'pl');
  6. return Date::parse($day->start)->format('l');
  7. })->where('start','=',$day);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement