@php $titlePage = __('lang.orders') @endphp @extends('dashboard.layouts.master') @section('title') {{ $titlePage }} @stop @section('content')

{{ $titlePage }}

{{-- Include Messages Flash --}} @include('includes.flash_msg')
{{ $titlePage }}
@foreach($data as $get) @endforeach
رقم الطلب اسم العميل تليفون العميل حالة الطلب المندوب مصاريف الشحن الاجمالى {{ __('lang.control') }}
{{ $get->order_number }} {{ $get->user->username }} {{ $get->user->phone }} @if($get->status == 'pending') {{ __('lang.'.$get->status) }} @endif @if($get->status == 'received') {{ __('lang.'.$get->status) }} @endif @if($get->status == 'preparation') {{ __('lang.'.$get->status) }} @endif @if($get->status == 'shipping') {{ __('lang.'.$get->status) }} @endif @if($get->status == 'reached') {{ __('lang.'.$get->status) }} @endif @if($get->status == 'canceled') {{ __('lang.'.$get->status) }} @endif {{ $get->driver_id == null ? 'لم يتم تعيين مندوب' : $get->delivery->username }} @if($get->offer == null || $get->driver_id == null) لم يتم التحديد @else {{ $get->offer->price }} @endif {{ $get->total }}
{{ $data->appends(request()->query())->render() }}
@if(!count($data))

{{ __('lang.no_data') }}

@endif
@stop @section('css') @stop @section('js') @stop