Ejemplo n.º 1
0
 public function fieldReservations($id)
 {
     $field = Field::with('company', 'reservations')->find($id);
     return response()->json($field);
 }
Ejemplo n.º 2
0
 /**
  * Display the specified resource.
  *
  * @param  int $id
  * @return Response
  */
 public function show($id)
 {
     $field = Field::with('photos', 'company', 'reviews.user')->where('id', '=', $id)->get();
     return response()->json($field);
 }