columns([ TextColumn::make('name') ->label(NotificationTemplate::getAttributeLabel('name')) ->searchable(), TextColumn::make('identifier') ->label(NotificationTemplate::getAttributeLabel('identifier')) ->searchable(), TextColumn::make('subject') ->label(NotificationTemplate::getAttributeLabel('subject')) ->searchable(), IconColumn::make('is_active') ->label(NotificationTemplate::getAttributeLabel('is_active')) ->boolean(), TextColumn::make('updated_at') ->dateTime() ->sortable() ->toggleable(isToggledHiddenByDefault: true), ]) ->filters([]) ->recordActions([ EditAction::make(), ]) ->toolbarActions([ BulkActionGroup::make([ DeleteBulkAction::make(), ForceDeleteBulkAction::make(), RestoreBulkAction::make(), ]), ]); } }