@extends('admin.layouts.app') @section('content')

@isset($page_title) {{$page_title}} @endisset

{{--
--}}
@forelse ($hotels as $key=>$hotel) @empty @endforelse
# Name Category Check in Time Check out Time Price Is Active Action
{{($key+1) + ($hotels->currentPage() - 1)*$hotels->perPage()}} {{$hotel->name}} {{$hotel->category}} {{$hotel->check_in_time}} {{$hotel->check_out_time}} ₹{{$hotel->price}} @if($hotel->is_active == '1') Active @else Inactive @endif

Nothing Found

Showing {{($hotels->currentpage()-1)*$hotels->perpage()+1}} to {{(($hotels->currentpage()-1)*$hotels->perpage())+$hotels->count()}} of {{$hotels->total()}} Hotels

{!! $hotels->links() !!}
@endsection