@extends('layouts.app') @section('content')
{{-- Image Gallery --}}
{{-- Details --}}

{{ $food->name }}

@if($food->name_bn)

{{ $food->name_bn }}

@endif {{-- Badges --}}
@if($food->is_bestseller)Bestseller@endif @if($food->is_halal)Halal@endif @if($food->is_vegetarian)Vegetarian@endif @if($food->is_new)New@endif
{{-- Price --}}
৳{{ number_format($food->effective_price, 0) }} @if($food->discount_price) ৳{{ number_format($food->base_price, 0) }} -{{ $food->discount_percentage }}% @endif
{{-- Meta --}}
{{ $food->preparation_time }}m
Prep Time
{{ $food->calories ?? 'N/A' }}
Calories
@if($food->spicy_level !== 'none')
{{ ucfirst(str_replace('_',' ',$food->spicy_level)) }}
@else
Not Spicy
@endif
Spice Level
{{-- Description --}}

{{ $food->description ?? $food->short_description }}

{{-- Variants --}} @if($food->variants->count())

Select Variant

@foreach($food->variants as $variant) @endforeach
@endif {{-- Addons --}} @if($food->addons->count())

Add-ons

@foreach($food->addons as $addon) @endforeach
@endif
{{-- Ingredients / Nutrition --}} @if($food->ingredients || $food->nutritional_info)
@if($food->ingredients)

Ingredients

@foreach($food->ingredients as $ing) {{ $ing }} @endforeach
@endif @if($food->nutritional_info)

Nutrition Info

@foreach($food->nutritional_info as $key => $value)
{{ ucfirst($key) }} {{ $value }}
@endforeach
@endif
@endif {{-- Related Foods --}} @if($relatedFoods->count())

You Might Also Like

@endif
@push('scripts') @endpush @endsection