Livewire v3 #961
-
I'm creating a page with a Livewire v3 component and i need @livewireScripts I've searched on docs a detailed blade structure for bkp v6 but don't found it :( Thanks for help |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey @blondie63 there is nothing really special about our structure. It's just a bunch of includes, simple as it should be. You just need to follow the files in the theme you are using because they may be different from theme to theme. For example theme-tabler support multiple different layouts. So starting from the view you are extending, you can see that on top it extends the layout you are using: Let's assume you are using You can check at that file the stacks etc you have available to As you probably already know, if you need to add extra-sauce to any of those files, you just need to publish them to the correct folder in your Let me know if that helps. Cheers |
Beta Was this translation helpful? Give feedback.
-
Due no activity i will close the issue, but please feel free to re-open or create a new one if needed. Cheers. |
Beta Was this translation helpful? Give feedback.
Hey @blondie63 there is nothing really special about our structure. It's just a bunch of includes, simple as it should be.
You just need to follow the files in the theme you are using because they may be different from theme to theme. For example theme-tabler support multiple different layouts.
So starting from the view you are extending, you can see that on top it extends the layout you are using:
https://github.com/Laravel-Backpack/theme-tabler/blob/1d4add238f0f9da59901f0ce880812344f5d7ba7/resources/views/blank.blade.php#L1
Let's assume you are using
horizontal_overlap
(the default one).https://github.com/Laravel-Backpack/theme-tabler/blob/main/resources/views/layouts/horizontal_overla…