Ejemplo n.º 1
0
 public function editTrips($id)
 {
     $trip = Trip::findOrDie($id);
     return view('adminTripEdit', ['trip' => $trip]);
 }