Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
🎨 New official Filament themes: Compact density, plus Soft, Sharp and Noir styles.
use Filament\Tables\Columns\CheckboxColumn;
CheckboxColumn::make('is_admin')
CheckboxColumn::make()
->beforeStateUpdated(function ($record, $state) {
// Runs before the state is saved to the database.
})
->afterStateUpdated(function ($record, $state) {
// Runs after the state is saved to the database.
})