@csrf @if (in_array(strtolower(pathinfo($meal->media, PATHINFO_EXTENSION)),['gif','jpg','jpeg','png','jfif','webp'])) @else @endif
{{ $meal->title }}
@if ($meal->tag_id)
{{ $meal->tag->title }}
@endif
{!! $meal->description !!}
@if ($meal->warnings->isNotEmpty())
@foreach ($meal->warnings as $warning) @endforeach
@endif @if ($meal->calories || $meal->preparation_time)
{{ $meal->calories }} @lang('global.calorie')
@if ($meal->calories && $meal->preparation_time)
-
@endif @if ($meal->preparation_time)
{{ $meal->preparation_time }}
@endif
@endif
@if ($meal->offer) {{ $meal->price }} {{ $meal->offer_price }} SAR @else {{ $meal->offer_price }} SAR @endif
@if ($meal->options->isNotEmpty())
@foreach ($meal->options as $option)
{{ $option->title }}
@foreach ($option->choices as $choice)
@if ($meal->restaurant->settings->orders->is_active)
first && $option->required) required @endif @if ($option->max_choices > 1) type='checkbox' name="options[{{ $option->id }}][choices][{{ $choice->id }}][id]" @else type="radio" name="options[{{ $option->id }}][choices][0][id]" @endif value="{{ $choice->id }}" />
@else @endif @if ($choice->price)
+{{ $choice->price }} SAR
@endif @if ($meal->restaurant->settings->orders->is_active) @if ($choice->max_quantity)
@endif @endif
@endforeach
@endforeach
@endif @if ($meal->restaurant->settings->orders->is_active)

@lang('global.add_your_notes_here')

@endif