Example #1
0
 /**
  * Show an event
  * 
  * @param  int $id The id of the event
  * @return void
  */
 public function show($id)
 {
     $event = Event::findOrFail($id);
     $this->title($event->title);
     $this->pageView('events::show', compact('event'));
 }