コード例 #1
0
 public function index()
 {
     $lists = \App\Lists::all();
     return \View::make('modules.lists.index', compact('lists'));
 }
コード例 #2
0
ファイル: ListsController.php プロジェクト: rinbo/anydocopy
 public function index()
 {
     $response['lists'] = Lists::all();
     return Response($response, 200);
 }