コード例 #1
0
ファイル: EntryController.php プロジェクト: JhonatanC/project
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $entries = Entry::get();
     return view('entry.index', compact('entries'));
 }
コード例 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $entry = Entry::get();
     //return $entry;
     return view('eventos', compact($entry));
 }