@if($restaurant->logo) @else
{{ strtoupper(substr($restaurant->name,0,1)) }}
@endif
{{ $restaurant->name }} @if($restaurant->city)
{{ $restaurant->city }}
@endif
@if($coupons->isNotEmpty()) @endif
All
@foreach($categories as $cat)
@if($cat->image)
{{ $cat->name }}
@else
{{ strtoupper(substr($cat->name, 0, 1)) }}
@endif {{ $cat->name }}
@endforeach
@foreach($categories as $cat)
{{ $cat->name }}
@foreach($cat->activeMenuItems as $item) @php $hasDiscount = $item->discount_price && $item->discount_price < $item->price; $discPct = $hasDiscount ? round(100 - ($item->discount_price / $item->price * 100)) : 0; $effectivePrice = $hasDiscount ? $item->discount_price : $item->price; $dot = match($item->food_type) { 'veg' => 'type-veg', 'non_veg' => 'type-nonveg', 'egg' => 'type-egg', default => 'type-veg' }; @endphp
@if($item->image) {{-- onerror: if file missing/404 on server, hide img and show placeholder --}} {{ $item->name }} @else
No Photo
@endif @if($hasDiscount) {{ $discPct }}% OFF @endif
@if($item->is_featured) Popular @endif
{{ $item->name }}
@if($item->description)
{{ $item->description }}
@endif
@if($hasDiscount)₹{{ number_format($item->price) }}@endif ₹{{ number_format($effectivePrice) }}
@if($item->is_available)
@else
Unavailable
@endif
@if(!$item->is_available)
Unavailable
@endif
@endforeach
@endforeach @if($categories->isEmpty())
Menu coming soon
The restaurant is setting up the menu.
@endif
Privacy Terms Data Deletion
MenuKosh is powered by Pinakra
0 items added
0
Your Order
Your cart is empty
Add items from the menu above
Track Your Order
Enter mobile number to find orders
@if($coupons->isNotEmpty()) @php $popCoupon = $coupons->first(); @endphp
@if($restaurant->logo) @endif
🎁
Special Offer For You
Use this coupon before checkout
Use code
{{ $popCoupon->code }}
@if($popCoupon->discount_type === 'percentage')
{{ $popCoupon->discount_value }}% OFF
@else
₹{{ number_format($popCoupon->discount_value) }} OFF
@endif @if($popCoupon->minimum_order_amount > 0)
Minimum order ₹{{ number_format($popCoupon->minimum_order_amount) }}
@endif @if($popCoupon->valid_until)
Valid until {{ \Carbon\Carbon::parse($popCoupon->valid_until)->format('d M Y') }}
@endif
@endif