Exemplo n.º 1
0
 /**
  * Display a listing of the Guest.
  *
  * @return Response
  */
 public function index()
 {
     $guests = $this->guestRepository->paginate(10);
     return view('guests.index')->with('guests', $guests);
 }