예제 #1
0
 /**
  * Display a listing of timelines
  *
  * @return Response
  */
 public function index()
 {
     $timelines = Timeline::all();
     return View::make('timelines.index', compact('timelines'));
 }