@php $title = 'Client Profiles'; $header = 'Client Profiles'; @endphp @extends('admin.layouts.app') @section('content')

{{ number_format($totalProfiles ?? 0) }}

Total Profiles

View All

{{ number_format($femaleCount ?? 0) }}

Female Profiles

View Female

{{ number_format($maleCount ?? 0) }}

Male Profiles

View Male

{{ $averageAge ?? 0 }}yrs

Average Age

View Details

All Client Profiles

@if(request('gender')) @endif
@if((isset($genderFilter) && $genderFilter) || (isset($search) && $search))
@if(isset($genderFilter) && $genderFilter) Filtered by: {{ $genderFilter }} @endif @if(isset($search) && $search) @if(isset($genderFilter) && $genderFilter) ยท @endif Search: {{ $search }} @endif Clear filters
@endif
@forelse ($profiles as $profile) @empty @endforelse
ID Profile Gender Age City Qualification Marital Status Actions
{{ $profile->id }}
{{ $profile->name }}
{{ $profile->name }}
{{ $profile->gender }} {{ $profile->age }} {{ $profile->city }} {{ $profile->qualification }} {{ $profile->marital_status }}
@csrf @method('DELETE')
No profiles found

Click "Create Profile" to add the first client profile.

Showing {{ $profiles->firstItem() ?? 0 }} to {{ $profiles->lastItem() ?? 0 }} of {{ $profiles->total() }} profile(s)
{{ $profiles->appends(request()->query())->links('pagination::tailwind') }}
@endsection