@extends('admin.layouts.master') @section('title', 'Hotel Management') @section('parent_title', 'Dashboard') @section('content')
Export
@foreach($hotels as $hotel) @endforeach
S.No Hotel Details Vendor (Owner) Name City Name State Name Status Actions
{{ $hotels->firstItem() + $loop->index }}
{{ $hotel->hotel_name }} #HTL-{{ str_pad($hotel->id, 4, '0', STR_PAD_LEFT) }}
{{ $hotel->vendor->full_name ?? 'N/A' }} #UID-{{ str_pad($hotel->user_id, 5, '0', STR_PAD_LEFT) }}
{{ $hotel->city }} {{ $hotel->state }}
{{ $hotel->status == 1 ? 'Active' : 'Pending' }}
Actions

No Matching Hotels Found

We couldn't find any properties matching your typed filters. Try modifying your search keyword.
Showing {{ $hotels->firstItem() }} to {{ $hotels->lastItem() }} of {{ $hotels->total() }} entries
{{ $hotels->links() }}
@endsection @section('scripts') @endsection