© 2026 Hedgehog Software, LLC
->schema([ Select::make('user_id') ->label('Warrior') ->required() ->searchable() ->options(User::all()->pluck('name', 'id') ])
Jar Grimsh Witek Boiar Zilgert Brimbright
Jar Grimsh - I only trust my sword. Witek Boiar - War, war, and war! Zilgert Brimbright - Light over darkness.
quotes
id
quote
- my custom quote
<b style='color: green;'> - my custom quote</b>
->schema([ Select::make('user_id') ->label('Warrior') ->required() ->searchable() ->options(User::all()->pluck('name', 'id') ->getOptionLabelFromRecordUsing(fn(Model $record) => "{$record->name} - my custom text") ])
Select::make('user_id') ->label('Warrior') ->required() ->searchable() ->options(function(): array { return User::all()->mapWithKeys(function ($user) { return [$user->id => $user->name . ' - ' . $user->quote]; })->toArray(); })