use Filament\Tables\Columns\ViewColumn; ViewColumn::make('status')->view('filament.tables.columns.status-switcher')
TextEntry::make('email') ->formatStateUsing(fn(string $state): string => $this->hasAccess ? $state : __('Denied')) ->badge(fn() => !$this->hasAccess) ->icon(fn() => !$this->hasAcecss ? 'heroicon-o-lock-closed' : ''),TextEntry::make('phone') ->formatStateUsing(fn(string $state): string => $this->hasAccess ? $state : __('Denied')) ->badge(fn() => !$this->hasAccess) ->icon(fn() => !$this->hasAcecss ? 'heroicon-o-lock-closed' : ''),TextEntry::make('address') ->formatStateUsing(fn(string $state): string => $this->hasAccess ? $state : __('Denied')) ->badge(fn() => !$this->hasAccess) ->icon(fn() => !$this->hasAcecss ? 'heroicon-o-lock-closed' : ''),