@extends('admin.layout.table.index') @section('page-title', trans('طلبات الإيجار')) @section('root', 'rentApplications') @section('nav') @endsection @section('buttons') @if (Auth::user()->isEmployee() && Auth::user()->employee_type == 'hasr') @endif @endsection @section('thead') @if (Auth::user()->isEmployee() && Auth::user()->employee_type == 'hasr') @endif # اسم العميل مبلغ الإيجار السنوي عدد الدفعات تاريخ بداية العقد تاريخ نهاية العقد رقم العقد الإلكتروني @if (Auth::user()->employee_type == 'hasr' || Auth::user()->employee_type == 'money' || Auth::user()->employee_type == 'finisher') مبلغ الاعتماد @if (Auth::user()->employee_type == 'finisher' || Auth::user()->employee_type == 'money') مبلغ الحصر @endif @endif حالة الطلب الاعدادت @endsection @section('tbody') @foreach ($items as $item) @if (Auth::user()->isEmployee() && Auth::user()->employee_type == 'hasr') @endif {{ $loop->iteration }} {{ @$item->user->name }} {{ number_format($item->aqar_rent_amount) }} ريال {{ $item->payments_count }} {{ $item->aqar_contract_start }} {{ $item->aqar_contract_expire }} {{ $item->sadad_number }} @if (Auth::user()->employee_type == 'hasr' || Auth::user()->employee_type == 'money' || Auth::user()->employee_type == 'finisher') {{ $item->manager_amount }} ريال @if (Auth::user()->employee_type == 'finisher' || Auth::user()->employee_type == 'money') {{ $item->hasr_amount }} ريال @endif @endif {{ $item->ApplicationStatusName() }} @include('admin.applications.updateApplicationStatus', ['item' => $item]) تفاصيل الطلب تعديل الطلب @endforeach @endsection @section('filters') @if (Auth::user()->employee_type == \App\Models\User::MONEY_EMPLOYEE)
تصدير الطلبات الغير مستخرجة

@endif
@if (Auth::user()->employee_type == \App\Models\User::MONEY_EMPLOYEE)
قم بأختيار حاله التصدير للطلبات
{{ trans('language.start_at') }}
{{ trans('language.end_at') }}
@endif

@include('admin.applications.orderStatusFilterCode')
@stop @section('js') @endsection