Introduction

Structure

File structure is similar across all the Laravel projects. You may find the structure of acorn-laravel-classic-dashboard and small explanations regarding of the content below.

Acorn Html Laravel 8 .Net 5 Admin Template
|
+-- Laravel
|   |
|   +-- acorn-laravel-classic-dashboard         // Classic Dashboard
|   |   |
|   |   \-- .env.example                        // Project settings (Rename this file to .env when getting started)
|   |   \-- artisan                             // Artisans commands
|   |   \-- composer.json                       // Composer dependencies
|   |   \-- package.json                        // Package file mostly for gulp tasks
|   |   \-- phpunit.xml                         // Related with testing
|   |   \-- server.php                          // A file for php's internal web server
|   |   \-- webpack.mix.js                      // Webpack tasks to build and minify the sass
|   |   \-- .gitignore                          // A file to tell git to ignore files and folder
|   |   |
|   |   +-- app                                  // Contains all controllers and model folder
|   |   +-- bootstrap                            // Contains cache folder and app.php 
|   |   +-- config                               // Contains the config files
|   |   +-- database                             // Contains database migrations, factories and seeders
|   |   +-- public                               // Contains static files created by webpack mix and index.php
|   |   +-- routes                               // Contains the web.php file where all routes and views are defined
|   |   +-- storage                              // Contains compiled blade files
|   |   +-- tests                                // Related with testing
|   |   +-- resources                            // Contains all blade files & static files of the theme
|   |       +-- views
|   |       |   |
|   |       |   \-- layout.blade.php              // Layout of almost all pages, including menu and footer  
|   |       |   \-- layout_full.blade.php         // Layout for the pages without a menu such as Login and Register
|   |       |   +-- _layout                       // Layout partials
|   |       |       |
|   |       |       \-- breadcrumb.blade.php      // Partial of layout that contains the breadcrumb
|   |       |       \-- footer.blade.php          // Partial of layout that contains the footer
|   |       |       \-- head.blade.php            // Partial of layout that contains the <head> tag
|   |       |       \-- modal_search.blade.php    // Partial of layout that contains the search modal
|   |       |       \-- modal_settings.blade.php  // Partial of layout that contains the settings modal
|   |       |       \-- nav.blade.php             // Partial of layout that contains the menu and header
|   |       |       \-- nav_secondary.blade.php   // Partial of layout that contains the secondary menu
|   |       |       \-- scripts.blade.php         // Partial of layout that contains the javascripts
|   |       |
|   |       +-- apps           
|   |       |   \-- calendar.blade.php
|   |       |   \-- chat.blade.php
|   |       |   \-- contacts.blade.php
|   |       |   \-- index.blade.php
|   |       |   \-- mailbox.blade.php
|   |       |   \-- tasks.blade.php
|   |       +-- blocks           
|   |       |   \-- Cta.blade.php
|   |       |   \-- Details.blade.php
|   |       |   \-- Gallery.blade.php
|   |       |   \-- Images.blade.php
|   |       |   \-- Index.blade.php
|   |       +-- ... Rest of the blade files 
|   |       |
|   |       +-- sass                            // Sass resources
|   |       |   |
|   |       |   +-- bootstrap                   // Bootstrap style overrides
|   |       |   +-- layout                      // Layout styles for navigation, footer and main content
|   |       |   +-- plugins                     // External plugin style overrides
|   |       |   +-- themes                      // Theme definitions
|   |       |   +-- utils                       // Sass utilities
|   |       |   \-- styles.scss                 // Combination of the sass resources
|   |       |
|   |       |
|   |       +-- css                             // Css files
|   |       |   |
|   |       |   +-- vendor                      // External css resources
|   |       |   \-- main.css                    // An empty file to add your styles
|   |       |   \-- styles.css                  // Core style file of the template, compiled from sass 
|   |       | 
|   |       +-- font                          // Font icons
|   |       |   |
|   |       |   +-- CS-Interface              // Essential interface icons to use as a font file
|   |       |
|   |       +-- icon                          // Icons
|   |       |   |
|   |       |   +-- acorn-icons-commerce.js   // Commerce icons
|   |       |   +-- acorn-icons-interface.js  // Interface icons
|   |       |   +-- acorn-icons-learning.js   // Learning icons
|   |       |   +-- acorn-icons-medical.js    // Medical icons
|   |       |   +-- acorn-icons.js            // Acorn Icons base scripts
|   |       |   +-- index.html                // Icons viewer
|   |       |
|   |       +-- img                             // Image sources
|   |       |   |
|   |       |   +-- background                  // Auth pages background
|   |       |   +-- banner                      // Banner images
|   |       |   +-- blog                        // Blog images
|   |       |   +-- brand                       // Logos
|   |       |   +-- favicon                     // Favicons for various devices
|   |       |   +-- illustration                // Illustrations in jpeg format
|   |       |   +-- logo                        // Logo color alternatives
|   |       |   +-- product                     // Product images with various sizes
|   |       |   +-- profile                     // User profile images
|   |       |   +-- video                       // Video thumbnails and backgrounds
|   |       |
|   |       +-- js                              // Javascript sources
|   |       |   |                             
|   |       |   +-- apps                        // Application scripts
|   |       |   +-- base                        // Template core scripts
|   |       |   +-- components                  // Bootstrap components examples
|   |       |   +-- cs                          // Custom plugins
|   |       |   +-- forms                       // Form layouts and plugins examples
|   |       |   +-- pages                       // Scripts of pages
|   |       |   +-- plugins                     // External plugins examples
|   |       |   +-- vendor                      // External javascript resources
|   |       |   \-- common.js                   // Initialization of commonly used plugins
|   |       |   \-- scripts.js                  // Template startup scripts and initialization of the others
|   |       |
|   |       +-- json                            // Json sources
|   |       |   |
|   |       |   \-- chat.json                   // Mock chat data
|   |       |   \-- contacts.json               // Mock contacts data
|   |       |   \-- events.json                 // Mock calendar data
|   |       |   \-- icons.json                  // Icon tags and titles to provide search and listing
|   |       |   \-- mailbox.json                // Mock mailbox data
|   |       |   \-- products.json               // Mock products data
|   |       |   \-- search.json                 // Pages and their titles to search the project
|   |       |   \-- tasks.json                  // Mock tasks data
|   |       |
|   |       |
|   |
|   +-- acorn-laravel-ecommerce-platform        // Ecommerce Platform
|   +-- acorn-laravel-service-provider          // Service Provider
|   +-- acorn-laravel-starter-project           // Starter Project 
|
+-- Net5
+-- Html
\-- Docs.html