@lang('igniter.orange::default.text_local_tab_info')

@if (strlen($locationInfo->description ?? '')) {{html(nl2br($locationInfo->description))}} @endif
@foreach($locationInfo->orderTypes() as $code => $orderType)
@if ($orderType->isDisabled()) {!! $orderType->getDisabledDescription() !!} @elseif ($orderType->getSchedule()->isOpen()) {!! $orderType->getOpenDescription()!!} @elseif ($orderType->getSchedule()->isOpening()) {!! $orderType->getOpeningDescription(lang('system::lang.moment.day_time_format_short')) !!} @else {!! $orderType->getClosedDescription() !!} @endif
@endforeach @if ($locationInfo->hasDelivery)
@lang('igniter.local::default.text_last_order_time')  {{ $locationInfo->lastOrderTime()->isoFormat(lang('system::lang.moment.day_time_format')) }}
@endif @if ($locationInfo->payments())
 @lang('igniter.local::default.text_payments')
{!! implode(', ', $locationInfo->payments()) !!}.
@endif @includeWhen($locationInfo->hasDelivery, 'igniter-orange::includes.local.delivery-areas') @includeUnless(empty($locationInfo->scheduleItems()), 'igniter-orange::includes.local.hours') @includeWhen($locationInfo->hasGallery(), 'igniter-orange::includes.local.gallery')