Example #1
0
 /**
  * Display a listing of the Reservation.
  *
  * @return Response
  */
 public function index()
 {
     $reservations = $this->reservationRepository->paginate(10);
     return view('reservations.index')->with('reservations', $reservations);
 }