Ejemplo n.º 1
0
 /**
  * Show the form for editing the specified timeslot.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $timeslot = Timeslot::find($id);
     return View::make('timeslots.edit', compact('timeslot'));
 }