{{-- FORM START --}}
{{-- FORM END --}}
{{-- RESET ORDER BUTTON --}}
@if(session('temp_order_items'))
@endif
{{-- TEMPORARY ITEMS TABLE --}}
@if(session('temp_order_items') && count(session('temp_order_items')) > 0)
Temporary Items
| # |
Description |
CTN |
QTY |
TTL/QTY |
Unit |
Price |
TTL Amount |
CBM |
TTL CBM |
KG |
TTL KG |
Shop No |
Remove |
@foreach(session('temp_order_items') as $index => $item)
| {{ $index + 1 }} |
{{ $item['description'] }} |
{{ $item['ctn'] }} |
{{ $item['qty'] }} |
{{ $item['ttl_qty'] }} |
{{ $item['unit'] }} |
{{ $item['price'] }} |
{{ $item['ttl_amount'] }} |
{{ $item['cbm'] }} |
{{ $item['ttl_cbm'] }} |
{{ $item['kg'] }} |
{{ $item['ttl_kg'] }} |
{{ $item['shop_no'] }} |
|
@endforeach
@endif