@extends('admin.layouts.master') @section('title', 'Hotel Profile Details') @section('parent_title', 'Management') @section('content')
Back to Listings

Hotel Core Profile Matrix

Hotel Name: {{ $hotel->hotel_name }}
State Managed: {{ $hotel->state }}
City Location: {{ $hotel->city }}
Physical Address Block: {{ $hotel->address }}
Amenities Packages: @if(!empty($hotel->amenities)) @php $amenitiesArr = is_array($hotel->amenities) ? $hotel->amenities : json_decode($hotel->amenities, true); @endphp @if(is_array($amenitiesArr)) @foreach($amenitiesArr as $amenity) {{ $amenity }} @endforeach @else Standard Package @endif @else No explicit packages mapped @endif
System Status: {{ $hotel->status == 1 ? 'Active / Approved' : 'Pending Verification' }}

Property Summary Description

{{ $hotel->description ?? 'No detailed marketing summary description logs configured for this hotel asset profile yet.' }}
@if(!empty($hotel->gallery_images)) @php $galleryArr = is_array($hotel->gallery_images) ? $hotel->gallery_images : json_decode($hotel->gallery_images, true); @endphp @if(is_array($galleryArr) && count($galleryArr) > 0)

Additional Gallery Media Assets

@foreach($galleryArr as $imagePath)
Gallery Room Stream
@endforeach
@endif @endif

Property Asset Header

@if(!empty($hotel->cover_image) && file_exists(public_path($hotel->cover_image))) Cover Image @else
{{ substr($hotel->hotel_name, 0, 1) }} div> @endif

{{ $hotel->hotel_name }}

{{ $hotel->city }} Cluster

Account Merchant Owner

Vendor ID: #UID-{{ str_pad($hotel->user_id, 5, '0', STR_PAD_LEFT) }}
Full Merchant Name: {{ $hotel->vendor->full_name ?? 'System Master Account' }}
Registered Email: {{ $hotel->vendor->email ?? 'N/A' }}
Contact Status: Verified Hotel Owner
@endsection