Restaurant Status Settings

@if($operationalStatus === 'open') @else @endif

Restaurant is {{ $operationalStatus === 'open' ? 'Open' : 'Closed' }}

@if($operationalStatus === 'open') Customers can place orders and make reservations @else Customers will see a closed message and cannot place orders @endif

@if($operationalStatus === 'closed')

This message will be displayed to customers when they try to access your restaurant

@endif
@if (session()->has('success'))

{{ session('success') }}

@endif