Laravel Structure

Overview of the Laravel structure and layout

This guide provides a comprehensive overview of the Laravel structure used in the Aquiry admin template. It explains how the layout is organized, the role of each partial, and how components are structured to create a fully responsive and modular dashboard interface.

@include('partials.main') <head> @include('partials.title-meta') @stack('style') @include('partials.head-css') </head> @include('partials.body') <!-- Begin page --> <div id="layout-wrapper"> @include('partials.menu') <!-- ============================================================== --> <!-- Start right Content here --> <!-- ============================================================== --> <div class="main-content"> <div class="page-content"> <div class="container-fluid"> @include('partials.page-heading') @yield('content') </div><!-- container-fluid --> </div><!-- End Page-content --> @include('partials.footer') @include('partials.scroll-to-top') </div> </div> @include('partials.right-sidebar') @include('partials.vendor-scripts') @stack('scripts') @vite(['resources/assets/js/app.js']) </body> </html>
© Aquiry.
Crafted & Design with by Codebucks