@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')

📊 Dashboard المصنع

{{ $approvedCount }}

رحلات معتمدة

{{ $loadingCount }}

جاري التحميل

{{ $weighedCount }}

تم الوزن

{{ $ordersCount }}

طلبات اليوم


📦 الطلبيات اليومي

@foreach($summary as $row) @endforeach
الصنف التعبئة إجمالي الكمية إجمالي الوزن
{{ $row['product'] }} {{ $row['variant'] }} {{ $row['total_quantity'] }} {{ number_format($row['total_weight'], 2) }} كجم

⚖️ آخر حركة ميزان

@if($lastTransaction)
الوزن الحالي: {{ $lastTransaction->current_weight }} | المحمل: {{ $lastTransaction->loaded_weight }} | الحالة: {{ $lastTransaction->status }}
@endif
@endsection