Beispiel #1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int $id
  * @return Response
  */
 public function edit($id)
 {
     $this->layout->title = 'Edit slide';
     $all_statuses = Slideshow::all_status();
     $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.slideshow.create_edit')->with('slide', Slideshow::findOrFail($id))->with('all_statuses', $all_statuses);
 }