6

I need to show selected country in the Belongs To Fields is there any method in which i can pass the value and it would be selected by default.

Nabeel Qadri
  • 109
  • 1
  • 6

2 Answers2

23

From this issue on Github, I tried the following in one of my BelongsTo relationship,

BelongsTo::make('countries')
    ->withMeta([
        'belongsToId' => 1 // default value for the select
    ]);

.. and it worked perfectly.

Mozammil
  • 8,520
  • 15
  • 29
5

You want to make sure that the value will be set correctly when editing so use the following code:

BelongsTo::make('countries')
    ->withMeta([
        'belongsToId' => $this->countries_id ?? 1 // default value for the select
    ]);