public static function table(Table $table): Table { return $table ->columns([ TextColumn::make('name')->searchable(), TextColumn::make('price'), TextColumn::make('duration_minutes'), IconColumn::make('is_active')->boolean(), TextColumn::make('created_at')->dateTime(), ]) ->actions([ EditAction::make(), ]) ->bulkActions([ DeleteBulkAction::make(), ]); } Laravel

Let's get started

With so many options available to you,
we suggest you start with the following:

v13.18.1 View changelog