{{__('Categories')}}
@if (count($allergens)>0)

{{__('Allergens')}}
@endif
@if(!$restorant->categories->isEmpty()) @foreach ( $restorant->categories as $key => $category)


Warning: Undefined variable $category in /home/gyannewsoftware/public_html/fooddelivery1_WhatsAppFoodSaaS/modules/ElegantTemplate/Resources/views/templates/place-content.blade.php on line 86

Warning: Attempt to read property "name" on null in /home/gyannewsoftware/public_html/fooddelivery1_WhatsAppFoodSaaS/modules/ElegantTemplate/Resources/views/templates/place-content.blade.php on line 86

@endforeach @endif

{{ __('Address') }}

{{ $restorant->address }}

{{ $restorant->phone }}

{{ __('Working Hours') }}

    @foreach ($wh as $day=>$hours)
  1. @if ($day==$currentDay)
    {{ __(ucfirst($day))}} {{ __('Today') }}
    @else
    {{ __(ucfirst($day))}}
    @endif @foreach ($hours as $timeRange)
    {{ $timeRange->start() }} - {{ $timeRange->end() }}
    @endforeach
  2. @endforeach
@if ($canDoOrdering)
@include('elegant-template::templates.side_cart',['id'=>'cartList','idtotal'=>'totalPrices'])
@endif