@extends('admin.layout.app') @section('style') @section('header')
| # | رقم الطلب | الاسم | رقم الجوال | رقم الهويه | الجنس | الدوله | المدينة | الحي | تاريخ الميلاد | الحالة الاجتماعية | نوع الطلب | العمليات |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{$i++}} | {{$item->id}} | {{$item->name}} | {{$item->phone1}} | {{$item->id_num}} | {{$item->gender}} | {{$item->country}} | {{$item->city}} | {{$item->hood}} | {{$item->birth_date}} | {{$item->status}} | {{__('auth.'.$item->req)}} | اضافة ملاحظة عرض الملاحظات @if (auth()->user()->role == 'admin') حذف @endif عرض @if (auth()->user()->role == 'employee') @if ( $item->step1 == null ) {!!Form::model($item , ['url' => ['/dashboard/orders/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!! Form::hidden('ty','emp', []) !!} {!!Form::close() !!} @else تم تاكيد صحة المرفقات والبيانات @endif @endif @if (auth()->user()->role == 'reviewer') @if ( $item->step1 == null ) لم يتم تاكيد صحة المرفقات والبيانات @else تم تاكيد صحة المرفقات والبيانات @endif @endif @if (auth()->user()->role == 'reviewer' && $item->step1) @if ( $item->step2 == null ) {!!Form::model($item , ['url' => ['/dashboard/orders/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!! Form::hidden('ty','review', []) !!} {!! Form::number('amount', null, ['class' => 'form-control ', 'step' => 'any', 'placeholder' => 'مبلغ التعميد']) !!} {!!Form::close() !!} @else تم تعميد المبلغ @endif @endif @if (auth()->user()->role == 'admin') @if ( $item->step1 == null ) لم يتم تاكيد صحة المرفقات والبيانات @else تم تاكيد صحة المرفقات والبيانات @endif @if ( $item->step1 == null ) لم يتم تعميد المبلغ @else تم تعميد المبلغ @endif @endif @if (auth()->user()->role == 'admin' && $item->step2) @if ( $item->step3 == null ) {!!Form::model($item , ['url' => ['/dashboard/orders/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!! Form::hidden('ty','adm', []) !!} {!!Form::close() !!} @else تم تأكيد تسليم المساعدة @endif @endif |