r {{> partials/sidebar }}
Laravel Docs - v1.1.0
Laravel Structure

The Laravel structure of the Evohus Admin Panel is organized for clarity, flexibility, and scalability. Each major layout section — header, sidebar, content, and footer — is structured using clean and semantic markup. This modular setup allows developers to easily customize or replace individual sections without affecting others.

<?php include 'partials/main.php'; ?> <head> <?php includeFileWithVariables('partials/title-meta.php', array('title' => 'Evohus - Admin & Dashboard Template')); ?> <!-- Basic Meta Tags --> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <!-- Primary Meta Tags --> <meta name="title" content="Evohus | Admin Dashboard Template"> <meta name="description" content="Get the best admin dashboard template with Bootstrap 5.3.8, multiple layouts, RTL/LTR support, dark/light mode, responsive design, and Sass support."> <meta name="keywords" content="bootstrap dashboard, admin template, responsive dashboard, analytics dashboard"> <meta name="author" content="SRBThemes"> <meta name="robots" content="index, follow"> <!-- Open Graph --> <meta property="og:type" content="website"> <meta property="og:url" content="#!"> <meta property="og:title" content="Evohus | Admin Dashboard Template"> <meta property="og:description" content="Bootstrap admin dashboard template"> <meta property="og:image" content="#!"> <!-- Twitter --> <meta property="twitter:card" content="summary_large_image"> <meta property="twitter:url" content="#!"> <meta property="twitter:title" content="Evohus | Admin Dashboard Template"> <meta property="twitter:description" content="Bootstrap admin dashboard template"> <meta property="twitter:image" content="#!"> <!-- favicon --> <link rel="shortcut icon" href="assets/images/favicon.ico"> <?php include 'partials/head-css.php'; ?> <!-- Layout JS --> <script type="module" src="assets/js/layout.js"></script> <link href="assets/libs/simplebar/simplebar.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/> <!-- Bootstrap CSS --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap.rtl.css" rel="stylesheet" disabled> <!-- Icons --> <link href="assets/css/icons.css" rel="stylesheet"> <!-- Google Font --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet"> <!-- App CSS --> <link href="assets/css/app.css" rel="stylesheet"> <link href="assets/css/app.rtl.css" rel="stylesheet" disabled> <!-- Admin Bundle JS --> <script type="module" src="assets/js/admin.bundle.js"></script> </head> <!-- Styles Stack --> @stack('styles') </head> <!-- Body --> @include('partials.body') <!-- Topbar --> @include('partials.topbar') <!-- Sidebar --> @include('partials.sidebar') <!-- Page Wrapper --> @include('partials.page-wrapper') <div class="container-fluid"> <!-- Page Heading --> @include('partials.page-heading') <!-- Page Content --> @yield('content') <!-- Footer --> @include('partials.footer') </div> </div> </div> <!-- Vendor Scripts --> @include('partials.vendor-scripts') <!-- Scripts Stack --> @stack('scripts')