コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $crud = Crud::all();
     return View('crud.index', compact('crud'));
 }
コード例 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $crud = Crud::all();
     return View::make('crud.index')->with('crud', $crud);
 }
コード例 #3
0
 public function index()
 {
     return Crud::all();
 }
コード例 #4
0
 public function index()
 {
     $anggota = Crud::all();
     return view('tampil')->with('anggota', $anggota);
 }