@extends('dashboard.layouts.app') @section('content')
قائمة {{ $title }}
@include('dashboard.layouts.message')
@if (count($data) > 0)
{{-- --}} @if (count($data) > 0 && !empty($data)) @foreach ($data as $item) {{-- --}} @endforeach @endif
كود الطلب العنوان صاحب الطلب تفاصيل الطلب تكلفة الشحن تكلفة الطلب قيمة الخصم التكلفة الكلية التحكم
{{ $item->code }} {{ $item->village->state . ' - ' . $item->village->city . ' - ' . $item->village->village }} {{ $item->user->name . ' ' . $item->user->name }}
{{ $item->user->phone }}
{{ $item->shipping_cost }} {{ $item->order_cost }} @if (!empty($item->coupon_discount)) {{ $item->coupon_discount }}% @endif {{ $item->total_cost }} @if ($item->status != '4' && $item->status != '2') @endif @if ($item->status == '4') تم الانتهاء @endif @if ($item->status == '2') تم الإلغاء @endif
@else

لا يوجد بيانات حاليا

@endif
@endsection @section('js') @endsection