Пример #1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $service = Services::find($id);
     $pets = PetTypes::get();
     return View::make('services.edit', compact('service', 'pets'));
 }