Пример #1
0
 public function index()
 {
     $lists = \App\Lists::all();
     return \View::make('modules.lists.index', compact('lists'));
 }
Пример #2
0
 public function index()
 {
     $response['lists'] = Lists::all();
     return Response($response, 200);
 }