{{ __('Aujourd\'hui') }}
{{ $interventions->where('intDet_planStartDate', '=', now()->toDateString())->count() }}
{{ __('En retard') }}
{{ $interventions->where('intDet_planStartDate', '<', now()->toDateString()) ->where('intDet_planEndDate', '<', now()->toDateString()) ->count() }}
{{ __('A venir') }}
{{ $interventions->where('intDet_planStartDate', '>', now()->toDateString())->count() }}
{{ __('A planifier') }}
{{ $interventions->count() }}
@if(empty($interventions)) {{ __('Aucune intervention à planifier') }} @else @endif