->emptyStateDescription(function (Livewire $livewire): string {
$activeTab = $livewire->activeTab;
$description = match ($activeTab) {
'validated' => 'Aucune fiche(s) trouvé',
'pending' => 'Aucune fiche(s) en attente',
'archived' => 'Aucune fiche(s) archivé(s)',
};
return $description;
});
->emptyStateDescription(function (Livewire $livewire): string {
$activeTab = $livewire->activeTab;
$description = match ($activeTab) {
'validated' => 'Aucune fiche(s) trouvé',
'pending' => 'Aucune fiche(s) en attente',
'archived' => 'Aucune fiche(s) archivé(s)',
};
return $description;
});