public function index() { $ctr = 0; $reservations = Reservation::latest()->paginate(25); $reservations->setPath('reservation'); return view('reservation.index', compact('reservations', 'ctr')); }