components([ Forms\Components\TextInput::make('id') ->required() ->maxLength(255), ]); } public function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('id'), 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(), DissociateAction::make(), ]) ->toolbarActions([ Tables\Actions\CreateAction::make(), Tables\Actions\AssociateAction::make(), BulkActionGroup::make([ DeleteBulkAction::make(), ]), ]); } }