├── app # Controllers and Models
├── bootstrap # Contains cache and app.php
├── config # Application's configuration files
├── database # Migrations, model factories, & seeds
├── public # index.php ,static folder & Build
├── resources # Assets, JS, Css, ReactJS and Laravel Views files
│ │ ├── src # All React App files
│ │ │ ├── @coremat/ # Coremat UI starter-kit
│ │ │ ├── @fake-db/ # Fake Database
│ │ │ ├── @jumbo/ # Global component, layouts and core settings
│ │ │ ├── i18n/ # Internationalization
│ │ │ ├── redux/ # All redux files
│ │ │ ├── routes/ # All routes and View files for all pages
│ │ │ ├── services/ # Auth files and mocking API files
│ │ │ ├── stories/ # Stories
│ │ │ ├── theme/ # Theme settings
│ │ │ ├── App.js # Application main App file
│ │ │ ├── index.js # Application main js file
│ │ │ ├── serviceWorker.js # React Core File
│ │ │ └── setupTests.js # React Core File
│ │ └── app.js # Entry point
│ ├── lang/ # Laravel Default Languages folder
│ ├── sass/ # Laravel Default sass folder
│ └── views/ # Contain Blade templates
├── routes/ # Include Routes Web.php
├── storage/ # Contains compile blade templates
├── .babelrc # Babel File
├── .editorconfig # Related with your editor
├── .env.example # Include Database credentials
├── .gitattributes # Give attributes to pathnames
├── .gitignore # Files and Directories to ignore
├── artisan # Include artisans commands
├── composer.json # Dependencies used by composer
├── package.json # Dependencies used by node
├── phpunit.xml # Related With testing
├── README.md # For Laravel information
├── server.php # For php's internal web server
└── webpack.mix.js # Laravel's webpack file