@extends('website.restaurant.layouts.index') @section('content') @if ($advertisments->isNotEmpty()) @foreach ($advertisments as $advertisment) @endforeach @endif @if ($table) {{ $table->title }} @endif @if ($room) {{ $room->title }} @endif @if (request('table') && $restaurant->settings->orders->enable_call_waiter) @lang('global.call_waiter') @endif @foreach ($restaurant->sections as $section) {{ $section->title }} @endforeach @foreach ($restaurant->sections as $section) {{ $section->title }} @foreach ($section->meals as $meal) @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 ?: __('global.no_description') !!} @if ($meal->price == 0) @elseif ($meal->offer) {{ $meal->price }} {{ $meal->offer_price }} {{ $restaurant->branch->city->country->currency_code }} @else {{ $meal->offer_price }} {{ $restaurant->branch->city->country->currency_code }} @endif @if (!$order || ($order && in_array($order->status->title,$restaurant->settings->orders->enable_adding_meal_on_status))) @if ($restaurant->settings->orders->is_active) @else @endif @endif @endforeach @endforeach @lang('global.add_from_menu_options')
00:59