text input relationShip
Hello, I can't get my quote via the form.
I'm in my resource, I don't understand why I can't get my quote since it works in my table.
Solution:Jump to solution
```php
public static function form(Form $form): Form
{
return $form
->schema([...
6 Replies
Use
Select
in form because TextInput
is not meant for relationshipI'd like to use a textInput, I have a relationship between invoice and estimate, and I'd like the text input to load the estimate data when I open my EditRecord invoice.
Can you add a value() ?
You need to pass in a group as a relationship
Solution
Thanks you !