Ejemplo n.º 1
0
 public function edit($id)
 {
     $horse = Horse::whereId($id)->firstOrFail();
     return view('backend.horses.edit', compact('horse'));
 }