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

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

@csrf
@if ($errors->has('barber_id')) {{ $errors->first('barber_id') }} @endif
@if ($errors->has('user_id')) {{ $errors->first('user_id') }} @endif
@if ($errors->has('service_id')) {{ $errors->first('service_id') }} @endif
{{-- @include('admin.layout.message')--}}

طلبات اليوم

{{--

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

--}} @foreach($rows as $row) @endforeach
# الكود اسم العميل اسم الحلاق الحالة عدد الخدمات الحساب الكلي تاريخ الطلب التحكم
{{$i}} {{$row->order_code}} {{$row->user->name .' '.$row->user->last_name}} {{$row->barber ? $row->barber->name .' '.$row->barber->last_name : 'لم يتم تحدد حلاق'}} @if($row->status == 'search') في مرحلة البحث @elseif($row->status == 'barber_accept') الموافقه من الحلاق @elseif($row->status == 'barber_in_way') الحلاق في الطريق @elseif($row->status == 'ongoing') في مرحلة التنفيذ @elseif($row->status == 'finish') تم الانتهاء @elseif($row->status == 'canceled') تم الإلغاء @endif {{$row->services->count()}} {{$row->total_price}} {{\Carbon\Carbon::parse($row->created_at)->toDateString()}}
@stop @section('scripts') @stop