F
Filament2mo ago
gremki

Error when I overwrite a view

Hello! I am trying to modify a filament view (vendor/filament/forms/resources/views/components/tabs.blade.php). I have copied the file in resources folder (resources/views/vendor/filament/components/tabs.blade.php) but, when I reload the page, I get an error
Undefined variable $isContained
Undefined variable $isContained
What am i missing here?
No description
Solution:
You copied from forms but didn’t include that for the target folder. You overwrite the Tabs Blade Component with the Form Component
Jump to solution
2 Replies
Solution
Dennis Koch
Dennis Koch2mo ago
You copied from forms but didn’t include that for the target folder. You overwrite the Tabs Blade Component with the Form Component
gremki
gremki2mo ago
Thank you!