{{-- المنتجات --}}
|
المنتج
|
الكمية
|
وزن الوحدة
|
الإجمالي
|
@foreach($ticket->items as $item)
|
{{ $item->product->name ?? '-' }}
|
{{ $item->quantity }}
|
{{ $item->unit_weight }}
|
{{ $item->total_weight }}
|
@endforeach
{{-- تسجيل الوزن --}}
@php
$transaction =
\App\Models\WeighbridgeTransaction::where(
'loading_ticket_id',
$ticket->id
)->first();
@endphp
@if(!$transaction)
@else
الوزن السابق:
{{ $transaction->previous_weight }}
الوزن الحالي:
{{ $transaction->current_weight }}
المحمل:
{{ $transaction->loaded_weight }}
الحالة:
{{ $transaction->status }}
@endif