@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->total_cost }} @if (!empty($item->coupon_discount)) {{ $item->coupon_discount }}% @endif @switch($item->status) @case(0)

جديد

@break @case(1)

تم التأكيد

@break @case(2)

ملغي

@break @case(3)

تم الشحن

@break @case(4)

تم التوصيل

@break @default @endswitch
@else

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

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