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.
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.
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
]);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With