@extends('admin.layouts.master') @section('title', 'تفاصيل رحلة التحميل') @section('content')
| # | رقم الطلبية | العميل | الوزن | الإجمالي | الحالة |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $order->id }} | {{ $order ->customer ->customer_name }} | {{ $order ->total_weight_kg }} كجم | {{ number_format( $order->total_amount, 2 ) }} | @if($order->status == 'loading') Loading @endif |
| # | العميل | النوع | المطلوب | المحمل | الفرق | الحالة | التفاصيل |
|---|---|---|---|---|---|---|---|
| {{ $ticket->id }} | {{ $ticket ->customer ->customer_name }} | {{ $ticket ->loading_category }} | {{ $ticket ->required_weight }} كجم | {{ $ticket ->loaded_weight }} كجم | {{ $ticket->loaded_weight - $ticket->required_weight }} كجم | @if($ticket->status == 'pending') Pending @elseif( $ticket->status == 'loading' ) Loading @elseif( $ticket->status == 'completed' ) Completed @endif | عرض |