@include('admin.layouts.messages') @if(request()->ajax())
هناك تحديث جديد للعقود في الساعة {{\Carbon\Carbon::now()->format('H:i:s')}}
@endif
@can('can view rent value') @endcan @can('can view rental barcode') @endcan @if(is_admin()) @endif @canany('can view history contracts', 'can view contract', 'can edit contract') @endcan @foreach($rows as $row) @can('can view rent value') @endcan @can('can view rental barcode') @endcan @if(is_admin()) @endif @endforeach
رقم العقد المستثمر القطاع الشاطئ مدة الحجزقيمة الايجارباركود المستأجررقم الجوالالحالةالعقد
{{$row->code}} {{@$row->user->name ?? ''}} {{@$row->sector->sector_name ?? ''}} {{@$row->beach->beach ?? ''}} من{{format_date($row->from)}}
إلى{{format_date($row->to)}}
{{$row->rent_value}} {{$row->user->phonenumber ?? ''}} @if($row->is_cancelled) ملغي - @endif @if($row->payment_type) {{trans('admin.'.$row->payment_type)}} @else غير معروف @endif @can('can view history contracts') @endcan @can('can view contract') @endcan @if(is_admin()) @can('can edit contract') @if(is_null($row->is_cancelled))
@csrf @method('PUT')
@endif @endcan @endif @if(is_admin() && auth()->id() == 75) @endif
{{$rows->appends(request()->all())->links()}}