@extends('layouts.delegates_dashboard_layout') @section('title') {{Session::has('lang')&&Session::get('lang')=='en'?' active orders':' الطلبات النشطة'}} @endsection @section('style') @endsection @section('content')
{{trans('delegates_dashboard.recent_orders')}}

{{trans('delegates_dashboard.recent_order_info')}}

@foreach($orders as $order) @endforeach
{{trans('delegates_dashboard.number')}} {{trans('delegates_dashboard.order_number')}} {{trans('delegates_dashboard.name')}} {{trans('delegates_dashboard.delegate')}} {{trans('delegates_dashboard.address')}} {{trans('delegates_dashboard.price')}} {{trans('delegates_dashboard.created_at')}}
{{$order->id}} #{{$order->citc_referenceCode??''}} {{$order->user->name??''}} {{$order->delegate->name??''}} {{$order->receive_address??''}} {{$order->total_price??''}} {{trans('delegates_dashboard.sr')}} {{Carbon\Carbon::parse($order->created_at)?->format('d/m/Y - H:i A')}}
@endsection @section('scripts') @endsection