@include('layouts.sidebar')
Profile Details
Full Name{{ $user->fullname ?? 'N/A' }}
Address{{ $user->contact_address ?? 'N/A' }}
Contact Number{{ $user->contact_number ?? 'N/A' }}
Email{{ $user->email ?? 'N/A' }}
Type{{ $user->userType->type_name ?? 'N/A' }}
Package Details
Package Name {{ $packageName }}
Renewal Date {{ $renewDate }}
Allowed Properties {{ $allowedProperties }}
Remaining Properties {{ $remainingProperties }}
My Properties {{ $myProperties }}
Approved Properties {{ $approvedProperties }}
Not Approved Properties {{ $notApprovedProperties }}
My Properties
@forelse ($properties as $property)
{{ $property->property_code }} - {{ Str::limit(strip_tags($property->property_title), 40) }}
@empty
No properties found.
@endforelse
@include('layouts.footer')