Filament page blade file not inheriting layout?
I have this class:
and this in my blade file:
The table takes up the full width of the page. There's no sidebar or header. I would think that using the
and this in my blade file:
The table takes up the full width of the page. There's no sidebar or header. I would think that using the
<x-filament-panels::page> would inherit the layout automatically. I looked in the Page class and the $layout it references contains all the necessary components, so I'm unclear of why it's not working correctly.Solution
figured it out...i had a render method in my class, so it was overriding the render method in the page class.