Beispiel #1
0
 /**
  * Display a listing of the resource.
  * @return Response
  */
 public function index()
 {
     $slides = Slideshow::all();
     $this->layout->title = 'All Slides';
     $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.slideshow.index')->with('slides', $slides);
 }