コード例 #1
0
 /**
  * Display a listing of the resource.
  * GET /admin\event
  *
  * @return Response
  */
 public function index()
 {
     View::share('title', 'Oldalak');
     $this->layout->content = View::make('admin.event.index')->with('events', Event::all(['id', 'title', 'start', 'end']));
 }