We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Create/Edit Form, we cannot use the auto-completion feature available with Place field.
https://nova.laravel.com/docs/3.0/resources/fields.html#configuring-field-auto-completion
On parent Resource:
MorphOne::make(__('Address'), 'address', Address::class)->inline()
On child Resource Address:
public function fields(Request $request) { return [ ID::make()->sortable(), Place::make('Address', 'address_line_1')->hideFromIndex(), Text::make('Address Line 2')->hideFromIndex(), Text::make('City')->hideFromIndex(), Text::make('State')->hideFromIndex(), Text::make('Postal Code')->hideFromIndex(), Text::make('Suburb')->hideFromIndex(), Country::make('Country')->hideFromIndex(), Text::make('Latitude')->hideFromIndex(), Text::make('Longitude')->hideFromIndex(), ]; }
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
Problem
On Create/Edit Form, we cannot use the auto-completion feature available with Place field.
https://nova.laravel.com/docs/3.0/resources/fields.html#configuring-field-auto-completion
To reproduce
On parent Resource:
On child Resource Address:
The text was updated successfully, but these errors were encountered: