Layout vs Wrapper
|-layout
|-wrapper-view
|-formForm settings related to Layout and Wrapper
Layout and Wrapperprotected function formAttr(): array
{
return [
//these settings are optional, the example shows the default values
'wrapWithView' => true, //or false
'wrapViewPath' => config('tall-forms.wrap-view-path'), //blade view path, used as @include($wrapViewPath)
'layout' => "layouts.app", //blade view path, Default = Livewire looks for "layouts.app.blade.php"
];
}Last updated
Was this helpful?