Level 73
Yes you can add options https://nova.laravel.com/docs/3.0/resources/fields.html#select-field
use Laravel\Nova\Fields\Select;
Select::make('User')->options(
User::all()->pluck('name', 'id')->toArray()
),
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi all,
is it posible to to make a array from a model in nova to feed the selectbox field?
Yes you can add options https://nova.laravel.com/docs/3.0/resources/fields.html#select-field
use Laravel\Nova\Fields\Select;
Select::make('User')->options(
User::all()->pluck('name', 'id')->toArray()
),
Please or to participate in this conversation.