{{ __('Please review the checkin details below') }}
@endif| {{ __('Item') }} | {{ __('Weight') }} | {{ __('Quantity') }} |
|---|---|---|
| {{ $item->item->name }} ({{ $item->item->code }}) | @if ($settings->track_weight)@endif | |
| @foreach ($variation->meta as $variant => $value) {{ $variant }}: {{ $value }}{{ $loop->last ? '' : ', ' }} @endforeach | @if ($settings->track_weight)@if ($item->item->track_weight) {{ formatNumber($variation->pivot->weight, $settings->fraction) }} {{ $settings->weight_unit }} @endif | @endif{{ formatNumber($variation->pivot->quantity, $settings->fraction) }} {{ $item->unit ? $item->unit->code : '' }} |
| {{ $item->item->name }} ({{ $item->item->code }}) | @if ($settings->track_weight)@if ($item->item->track_weight) {{ formatNumber($item->weight, $settings->fraction) }} {{ $settings->weight_unit }} @endif | @endif{{ formatNumber($item->quantity, $settings->fraction) }} {{ $item->unit ? $item->unit->code : '' }} |