IconColumn::make('is_human_at')
->label('is_robot')
->icons([
'heroicon-o-check-circle' => fn (?string $state): bool => $state !== null,
'heroicon-o-x-circle' => fn (?string $state): bool => $state !== null,
])
->colors([
'success' => fn (?string $state): bool => $state !== null,
'danger' => fn (?string $state): bool => $state !== null,
]),
IconColumn::make('is_human_at')
->label('is_robot')
->icons([
'heroicon-o-check-circle' => fn (?string $state): bool => $state !== null,
'heroicon-o-x-circle' => fn (?string $state): bool => $state !== null,
])
->colors([
'success' => fn (?string $state): bool => $state !== null,
'danger' => fn (?string $state): bool => $state !== null,
]),