@if($data) @foreach($data as $key => $hotel) @endforeach @else

There is no record to display at the moment

@endif
Hotel Name Subscription Phone Validity
@if($hotel->cover !='') @else @endif
#000{{$key + 1}} {{$hotel->name}}
{{$hotel->slug}}
{{number_format($hotel->amount)}} {{$hotel->phone}}
{{$hotel->email}}
@if($hotel->status=='active')
{{$hotel->total_rooms}} Rooms {{ date('Y-m-d', strtotime($hotel->validity)) }}
@endif
{{$data->links()}}
@if($inactive) @foreach($inactive as $key => $ihotel) @endforeach
Hotel Name Phone Email Address Status
#000{{$key + 1}} {{$ihotel->name}}
{{$ihotel->phone}}
{{$ihotel->email}}
{{$ihotel->address}}
@if($ihotel->status=='inactive') INACTIVE @endif
{{$inactive->links()}}
@else

There is no record to display at the moment

@endif