@extends('admin.layouts.master')
@section('title', 'Dashboard')
@section('content')
📊 Dashboard المصنع
{{ $approvedCount }}
رحلات معتمدة
{{ $loadingCount }}
جاري التحميل
{{ $weighedCount }}
تم الوزن
{{ $ordersCount }}
طلبات اليوم
📦 الطلبيات اليومي
| الصنف |
التعبئة |
إجمالي الكمية |
إجمالي الوزن |
@foreach($summary as $row)
| {{ $row['product'] }} |
{{ $row['variant'] }} |
{{ $row['total_quantity'] }} |
{{ number_format($row['total_weight'], 2) }} كجم |
@endforeach
⚖️ آخر حركة ميزان
@if($lastTransaction)
الوزن الحالي:
{{ $lastTransaction->current_weight }}
| المحمل:
{{ $lastTransaction->loaded_weight }}
| الحالة:
{{ $lastTransaction->status }}
@endif
@endsection