No data on textarea, input and select on modal when update or view
I have same issue with this https://github.com/filamentphp/filament/discussions/13488
The case is in my local it's ok but on prod there is no data and got error
How to fix this when you want to use view action or even custom action
either of the two is not working on prod and even local from another dev
GitHub
Custom page textarea vs textinput bug · filamentphp filament · Disc...
Package Form builder Package Version v3.2* How can we help you? Upon update to filament latest, the textarea in my custom page stopped passing the entered value. The same form in a filament resourc...
Solution:Jump to solution
Ohh.... I solved it by just upgrading the filament version and composer install
3 Replies
Sounds like you’re depending on a relationship but not actually using relationship fields meaning that the relationship isn’t actually getting loaded.
No relationship here sir.. I just want to show the details of the report based on the data in the database
this is the form
public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\Textarea::make('reason')
->readOnly()
->columnSpanFull(),
Forms\Components\Select::make('status')
->required()
->columnSpanFull()
->options(Status::adminActions()),
Forms\Components\Textarea::make('remarks')
->columnSpanFull(),
]);
}
So in my list I want to show (view) the data of that specific idSolution
Ohh.... I solved it by just upgrading the filament version and composer install