コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     return view('admin.events.index', ['events' => Event::all()]);
 }
コード例 #2
0
 public function events()
 {
     return view('home.events.index', ['events' => Event::all()->sortByDesc('created_at')]);
 }