@extends('admin.layout.master') @section('title', "الطلبات والتقارير") @section('css') @stop @section('content')

الطلبات والتقارير

@csrf
{{-- @include('admin.layout.message')--}}

أحدث الطلبات

{{--

--}} {{-- --}} {{-- --}} {{-- --}} {{--

--}} @foreach($rows as $row) @endforeach
# الرقم المرجعي كود الإنتهاء اسم العميل اسم الفني الطلب العنوان تاريخ الطلب السعر شامل الضريبة طريقه الدفع قيمة الدفع الاولي كود الخصم الحالة التحكم
{{$i}} {{$row->code}} {{$row->finish_code}} {{$row->user->username}} {{$row->worker ? $row->worker->username : "لم يتم تخصيص فنى"}} {{$row->title}} {{$row->address_detail->address}} {{\Carbon\Carbon::parse($row->created_at)->toDateString()}} {{$row->total_price}} {{$row->payment_type == 'visa' ? "تحويل اليكتروني" : "تحويل بنكي"}} {{(integer) $row->total_price * 20/100}} {{$row->coupon ? $row->counpon : "لم يتم الاستخدام"}} {{getOrderStatus($row->id)}}
@stop @section('scripts') @stop