@extends('frontend.layouts.app') @section('title', ($siteSettings['restaurant_name'] ?? 'Restaurant').' — Digital Menu & Offers') @section('content')

{{ \App\Models\Setting::get('hero_title', 'Fresh Flavors, Made With Care') }}

{{ \App\Models\Setting::get('hero_subtitle', 'Discover our seasonal menu crafted daily.') }}

{{ \App\Models\Setting::get('hero_button_text', 'View Menu') }}
Loved by 2,000+ guests
@if($banners->count())
@foreach($banners as $b) @if($b->title)

{{ $b->title }}

{{ $b->subtitle }}

@if($b->button_text){{ $b->button_text }}@endif
@endif
@endforeach
@endif

Browse by Category

Find exactly what you're craving

@foreach($categories as $cat)

{{ $cat->name }}

@endforeach

Featured Dishes

Chef's picks, made fresh daily

@if($offers->count())

Special Offers

Limited-time deals you won't want to miss

@foreach($offers as $o)
@if($o->banner_image)@endif

{{ $o->title }}

{{ Str::limit($o->description, 80) }}

{{ $o->discount_percentage ? $o->discount_percentage.'% OFF' : $siteSettings['currency'].$o->fixed_discount.' OFF' }}
@endforeach
@endif

About Us

{{ \App\Models\Setting::get('about_text') }}

Fresh Ingredients

{{ $siteSettings['opening_hours'] }}

5-Star Service

@endsection