Hi {{ $customerName }}, # Your order from {{ $brandName }} has been placed :) Order Details:
@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
@include('emails.partials.order-financials') @if(empty($orderFinancials))
Order Total: {!! $currencySymbol !!}{{ $orderTotal }}

@else
@endif @if($trackingUrl) Track your order @endif See you soon,
{{ $brandName }}