{{-- Filters --}} Report Filters
{{ $this->form }}
Generate Report
{{-- Statistics Grid --}}
@php $stats = $this->getStats(); @endphp
{{ $stats['total_candidates'] }}
Total Candidates
{{ $stats['approved_candidates'] }}
Approved Candidates
{{ $stats['open_demands'] }}
Open Demands
{{ $stats['active_partners'] }}
Active Partners
{{ $stats['male_candidates'] }}
Male Candidates
{{ $stats['female_candidates'] }}
Female Candidates
{{ $stats['pending_departures'] }}
Pending Departures
{{ $stats['working_abroad'] }}
Working Abroad
{{-- Charts --}}
Top 10 Counties by Candidates
@foreach($this->getCandidatesByCounty() as $county => $count)
{{ $county }}
{{ $count }}
@endforeach
Demands by Country
@foreach($this->getDemandsByCountry() as $country => $count)
{{ $country }}
{{ $count }}
@endforeach
Top 5 Partners by Demands
@foreach($this->getTopPartners() as $partner => $count)
{{ $partner }}
{{ $count }} demands
@endforeach