Hi,
Nova doesn't display "Textarea" field in "Stack" field on "Details" page:
Detailed steps to reproduce the issue on a fresh Nova installation:
Put this method in some resource and check details page.
use Laravel\Nova\Fields\Stack;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Fields\Textarea;
use Laravel\Nova\Http\Requests\NovaRequest;
// ...
public function fieldsForDetail(NovaRequest $request)
{
return [
Stack::make('Stack field', [
Text::make('test 0', fn() => 'text field 0'),
Textarea::make('test TEXAREA', fn() => '!!! WHERE IS THIS TEXT? !!!')->alwaysShow(),
Text::make('test 1', fn() => 'text field 1'),
Text::make('test 2', fn() => 'text field 2'),
])
];
}
Description:
Hi, Nova doesn't display "Textarea" field in "Stack" field on "Details" page:
Detailed steps to reproduce the issue on a fresh Nova installation:
Put this method in some resource and check details page.
Result:
How to display the field Textarea?