components([ Forms\Components\TextInput::make('id') ->required() ->maxLength(255), ]); } public function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('owner'), Tables\Columns\TextColumn::make('year'), Tables\Columns\TextColumn::make('make'), Tables\Columns\TextColumn::make('model'), ]) ->filters([ // ]) ->recordActions([ EditAction::make(), DeleteAction::make(), ]) ->toolbarActions([ CreateAction::make(), BulkActionGroup::make([ DeleteBulkAction::make(), ]), ]); } }