@extends('components.view')
@section('themeStylesheet')
@endsection
@section('brandThemeOverrideSettings')
@endsection
@section('brandBackground')
@if($brandBackground!=='' && !empty($brandBackground))
style="background-image:url('{{ $brandBackground }}');"
@endif
@endsection
@section('header')
@php echo \App\Http\Controllers\Header::index($themeDirectory,$brandLogoSmall) @endphp
@php echo \App\Http\Controllers\Navigation::index($themeDirectory) @endphp
@endsection
@section('content')
{!! $icon !!}{{ $heading }}
{{ $subheading }}
@if($hasPendingOrder)
@if($isCurbsideEnabled && !$includesCateringRequest)
Have you arrived?
@if($requireVehicleDescription)
@else
@endif
@endif
Items in this order
@foreach($lineItems as $lineItem)
{!! $lineItem['quantity'] !!} x {!! $lineItem['name'] !!}
@if(array_key_exists('modifiers',$lineItem))
@foreach($lineItem['modifiers'] as $modifier)
{!! $modifier['name'] !!}
@if((int)$modifier['quantity']!==1)
x {!! $modifier['quantity'] !!}
@endif
@endforeach
@endif
@endforeach
Order Total: {!! $currencySymbol !!}{!! $orderTotal !!}
@if(!$includesCateringRequest)
Expected to be {!! $fulfillmentType !!} {!! $fulfillmentTime !!}
@endif
@if($trackingUrl)
@endif
@endif
@endsection