موظفي صاحب العقار
@if(isset($staffList) && $staffList->count() > 0)
@foreach($staffList as $staff) @endforeach
الاسم اسم المستخدم رقم الهاتف الدور الحالة الإجراءات
{{ $staff->full_name }} {{ $staff->username }} {{ $staff->country_code }}{{ $staff->phone_number }} @if($staff->role_id == 1) CO-Admin @elseif($staff->role_id == 2) حجوزات @elseif($staff->role_id == 3) مالية @endif @if($staff->is_active) نشط @else غير نشط @endif
@csrf @method('PATCH')
@else
لا يوجد موظفين مضافين لهذا المالك بعد.
@endif
@if(isset($staffList)) @php // Pass selectedOwnerId for the modals to work correctly $selectedOwnerId = $tblUser->id; $staffMembers = $staffList; @endphp @include('admin.staff.partials.form_modal') @endif