components([ Forms\Components\Select::make('judge') ->label('Judge') ->options(Judges::all()->pluck('judge_number', 'id')) ->searchable(), Forms\Components\Select::make('vehicle') ->label('Vehicle') ->options(Vehicles::all()->pluck('owner', 'id')) ->searchable(), Forms\Components\TextInput::make('overall_score') ->label('Overall Score'), ]); } public function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('judge'), Tables\Columns\TextColumn::make('overall_score'), ]) ->filters([ // ]) ->recordActions([ EditAction::make(), DeleteAction::make(), ]) ->toolbarActions([ CreateAction::make(), BulkActionGroup::make([ DeleteBulkAction::make(), ]), ]); } }