@extends('layouts.fleet') @section('title', 'طلبات المتجر — '.niche_module_label('fleet')) @section('content')

طلبات المتجر (Pool)

خطوط السير
@if($pendingCount === 0)

لا توجد طلبات بانتظار الإسناد.

@else
@foreach($orders as $order) @endforeach
الفاتورة العميل الجوال الإجمالي التسليم إسناد لخط سير إسناد مندوب
{{ $order->invoice_number ?? '#'.$order->id }} {{ $order->customer_name }} {{ $order->customer_phone }} {{ number_format((float) $order->total_amount, 2) }} {{ $fulfillmentLabels[$order->fulfillment_status] ?? $order->fulfillment_status }} @if(app(\App\Support\FleetAccess::class)->allows(\App\Support\FleetAccess::CAP_MANAGE_STORE_ORDERS))
@csrf @else — @endif
@if(app(\App\Support\FleetAccess::class)->allows(\App\Support\FleetAccess::CAP_MANAGE_STORE_ORDERS))
@csrf @else — @endif
{{ $orders->links() }}
@endif
@endsection