*/ class CategoriesTable extends Table { protected $model = Category::class; public function columns(): array { return [ Column::make('id', 'ID'), Column::make('name', 'Name'), ]; } }