@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)
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
Total: {!! $currencySymbol !!}{!! $orderTotal !!}
Appointment set for {!! date('l, F j',strtotime($fulfillmentDateTime)) !!} @ {!! $fulfillmentTime !!}
@if($trackingUrl)
@endif
@endif
@endsection