diff --git a/app/Filament/Resources/Domains/Tables/DomainsTable.php b/app/Filament/Resources/Domains/Tables/DomainsTable.php index 7b064e7..60eb133 100644 --- a/app/Filament/Resources/Domains/Tables/DomainsTable.php +++ b/app/Filament/Resources/Domains/Tables/DomainsTable.php @@ -77,8 +77,8 @@ class DomainsTable SelectFilter::make('is_active') ->label('Status') ->options([ - '1' => 'Active', - '0' => 'Inactive', + true => 'Active', + false => 'Inactive', ]), TrashedFilter::make(), ])