@if($showThumb)
{{$locationData->name}}
@endif

{{ $locationData->name }}

@if($allowReviews)
({{ $locationData->reviewsCount() }})
@endif
{{ format_address($locationData->address, false) }}
@if($locationData->distance())
  {{ number_format($locationData->distance(), 1) }} {{ $distanceUnit }}
@endif
@if ($locationData->openingSchedule()->isOpen()) @lang('igniter.local::default.text_is_opened') @elseif ($locationData->openingSchedule()->isOpening()) {!! sprintf(lang('igniter.local::default.text_opening_time'), make_carbon($locationData->openingSchedule()->getOpenTime())->isoFormat(lang('igniter::system.moment.day_time_format_short'))) !!} @else @lang('igniter.local::default.text_closed') @endif
@foreach($locationData->orderTypes() as $code => $orderType)
@if($orderType->isDisabled()) {!! $orderType->getDisabledDescription() !!} @elseif($orderType->getSchedule()->isOpen()) {!! $orderType->getOpenDescription() !!} @elseif($orderType->getSchedule()->isOpening()) {!! $orderType->getOpeningDescription(lang('igniter::system.moment.day_time_format_short')) !!} @else {!! $orderType->getClosedDescription() !!} @endif
@endforeach