@extends('layouts.master') @section('body_id', 'vendor_hotels_list_page') @section('content')
@include('frontend.vendor.partials.sidebar')

My Registered Hotels

View, monitor, and optimize your registered hotel properties infrastructure logs.

@if($hotels->isEmpty())

No Properties Found

You haven't listed any hotel properties under your account index profile yet.

List Your First Hotel
@else
@foreach($hotels as $hotel) @endforeach
Preview Hotel Details Location City Google Map Amenities Included Verification Status Action Grid
@if($hotel->cover_image) Cover @else
@endif
{{ $hotel->hotel_name }} {{ Str::limit($hotel->address, 45) }} {{ $hotel->city }} @if($hotel->map_url) @else No Map @endif
@if(!empty($hotel->amenities) && is_array($hotel->amenities)) @foreach(array_slice($hotel->amenities, 0, 3) as $amenity) {{ $amenity }} @endforeach @if(count($hotel->amenities) > 3) +{{ count($hotel->amenities) - 3 }} @endif @else None Specified @endif
@if($hotel->status == 1) Live & Active @elseif($hotel->status == 0) Pending Review @else Suspended @endif
@csrf @method('DELETE')
@endif
@if(session('success')) @endif @endsection