@if($data['funnel']['total'] > 0)
{{ $data['funnel']['total'] }} demandes au total
@foreach($data['funnel']['stages'] as $i => $stage)
@if($stage['count'] > 0)
@php $w = max(42, 100 - $i * 12); @endphp
{{ $stage['label'] }}
{{ $stage['count'] }}
{{ $stage['percent'] }}%
@if(!$loop->last && $stage['status'] !== 'cancelled')
▼
@endif
@endif
@endforeach
@else
Aucune demande contact pour ce hostel.
Le funnel s'activera dès la première demande reçue.
@endif