@if ($mail) {{ __('Hello') }} {{ $checkout->contact->name }},

{{ __('Please review the checkout details below') }}

@endif
@if ($checkout->warehouse->logo) @else

{{ $checkout->warehouse->name }}

@endif
{{ $checkout->warehouse->name }} ({{ $checkout->warehouse->code }})
{{ $checkout->warehouse->address }}
{{ $checkout->warehouse->phone }}
{{ $checkout->warehouse->email }}
@if ($checkout->draft)
{{ __('This record is still a draft.') }}
@endif

{{ __('Checkout') }}

 
{{ __('Date') }}: {{ $checkout->date }}
{{ __('Reference') }}: {{ $checkout->reference }}
{{ __('Created at') }}: {{ $checkout->created_at }}
{{ __('For') }}:
{{ $checkout->contact->name }}
{{ $checkout->contact->phone }}
{{ $checkout->contact->email }}
@foreach ($checkout->items as $item) @if ($item->variations->isNotEmpty()) @if ($settings->track_weight) @endif @foreach ($item->variations as $variation) @if ($settings->track_weight) @endif @endforeach @else @if ($settings->track_weight) @endif @endif @endforeach
{{ __('Item') }} {{ __('Weight') }} {{ __('Quantity') }}
{{ $item->item->name }} ({{ $item->item->code }})
@foreach ($variation->meta as $variant => $value) {{ $variant }}: {{ $value }}{{ $loop->last ? '' : ', ' }} @endforeach @if ($item->item->track_weight) {{ formatNumber($variation->pivot->weight, $settings->fraction) }} {{ $settings->weight_unit }} @endif {{ formatNumber($variation->pivot->quantity, $settings->fraction) }} {{ $item->unit ? $item->unit->code : '' }}
{{ $item->item->name }} ({{ $item->item->code }}) @if ($item->item->track_weight) {{ formatNumber($item->weight, $settings->fraction) }} {{ $settings->weight_unit }} @endif {{ formatNumber($item->quantity, $settings->fraction) }} {{ $item->unit ? $item->unit->code : '' }}
{{ $checkout->details }}
{{ __('This is computer generated document, no signature required.') }}