@extends('frontend.layouts.app') @section('title', 'Products') @section('content') @include('frontend.sections.page-banner',[ 'title' => 'Menu', 'subtitle' => 'Fresh ingredients, authentic flavors, and exceptional quality for every occasion..' ])
FEATURED MENU

Delicious Dishes Prepared With Love

Explore our most popular catering dishes, prepared with premium ingredients and served with exceptional quality.

@forelse($menus as $menu)
@if($menu->image) {{ $menu->name }} @else {{ $menu->name }} @endif @if($menu->popular) Popular @endif
{{ $menu->title }}
@if($menu->price) Rs. {{ number_format($menu->price) }} @endif
{{ \Illuminate\Support\Str::limit(strip_tags($menu->description), 80) }}
{{ $menu->category }} @if($menu->serving) {{ $menu->serving }} @endif
@empty
No menu available.
@endforelse
@endsection