@php use App\Enums\TrainingDashboardRankingScope; /** @var array $filterQuery */ /** @var TrainingDashboardRankingScope $rankingScope */ $filterQuery = $filterQuery ?? []; $rankingScope = $rankingScope ?? TrainingDashboardRankingScope::General; $tabs = [ ['scope' => TrainingDashboardRankingScope::General, 'label' => 'Geral'], ['scope' => TrainingDashboardRankingScope::Sector, 'label' => 'Por área'], ['scope' => TrainingDashboardRankingScope::Group, 'label' => 'Por grupo'], ]; @endphp