© 2026 Hedgehog Software, LLC
Tables\Columns\SelectColumn::make('currency_id') ->label('Currency') ->options(fn (Currency $currency) => $currency->pluck('name', 'id'))
Forms\Components\Select::make('currency_id') ->relationship(name: 'currency', titleAttribute: 'name')
SelectColumn::make('currency_id') ->options(Currency::pluck('name', 'id'))