/** * Display the specified resource. * * @param int $id * @return Response */ public function show() { $rental = Rental::all(); return view('store.show')->with('rentals', $rental); }
/** * Display a listing of the resource. * * @return Response */ public function index(Estate $estate_id) { $rental = Rental::all()->paginate(6); $estate = Estate::with('rental')->get(); return view('rentals.index')->with('rentals', $rental)->with('estates', $estate); }