@if($business->cover_image) {{ $business->name }} @else
@endif
@if($business->logo) @else
{{ strtoupper(substr($business->name,0,1)) }}
@endif

{{ $business->name }}

@if($business->city)

📍 {{ $business->city }}

@endif
@if($business->description)

{{ $business->description }}

@endif @if($business->whatsapp_number) 💬 WhatsApp Enquiry @endif
@if($categories->isNotEmpty())
@foreach($categories as $cat) @endforeach
@endif
@forelse($categories as $cat)
{{ $cat->name }}
@foreach($cat->activeMenuItems as $item)
@if($item->is_featured) POPULAR @endif
{{ $item->name }}
@if($item->description)
{{ $item->description }}
@endif @if($item->preparation_time)
⏱ {{ $item->preparation_time }} min
@endif
@if($item->discount_price) ₹{{ number_format($item->price) }} ₹{{ number_format($item->discount_price) }} @else ₹{{ number_format($item->price) }} @endif
@if($item->is_available) @else Unavailable @endif
@if($item->image) @endif
@endforeach
@empty
✂️
Services coming soon
@endforelse