Advertisement
majweb

Untitled

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