Files Structure
You can find a breakdown of the file structures for easier customization
We have used components in Laravel to organize our code more efficiently. Most of the code can be found in the components folder.
All files used for frontend pages are located in the
resources/viewsdirectory,resources/views/componentsand with some additional files in theresources/views/layoutsdirectory, as shown in the image.



All files used for backend pages are located in the
resources/viewsdirectory,resources/views/components/backendand with some additional files in theresources/views/layoutsdirectory, as shown in the image.



For styling, we can utilized Tailwind CSS which has been compiled in public/css/app.css, public/css/style.css, and some custom css which can be found in the public/css/custom.css. For custom CSS or JS, you can add your reference to it in Frontend Manager under the css and js section. example public/css/example.css or public/js/example.js
Last updated