Ejemplo n.º 1
0
 public function index()
 {
     $meetings = Meeting::orderBy('updated_at', 'desc')->get();
     return View::make('Middle.Web.Meeting.index', compact('meetings'));
 }
Ejemplo n.º 2
0
 public function index()
 {
     $meetings = Meeting::orderBy('updated_at', 'desc')->get();
     return response(['data' => $meetings, 'status' => 'success', 'message' => '']);
 }