@extends('admin.layouts.master') @section('title', 'رحلات التحميل') @section('content')

رحلات التحميل

@foreach($batches as $batch) @endforeach
# رقم الرحلة العربية السائق عدد الطلبيات الوزن الكلي التاريخ الحالة الإجراءات
{{ $batch->id }} {{ $batch->batch_number }} {{ $batch->truck->truck_number }} {{ $batch->truck->driver_name }} {{ $batch->orders->count() }} {{ $batch->total_weight_kg }} كجم {{ $batch->delivery_date }} @if($batch->status == 'draft') Draft @elseif($batch->status == 'approved') Approved @elseif($batch->status == 'loading') Loading @elseif($batch->status == 'completed') Completed @endif عرض
@endsection