πFolder Structure
React & Laravel Light Able folder structure is meticulously organised to enhance project scalability and maintainability. With directories for routes, controllers, assets, views, and configuration settings
Light Able React & Laravel Folders Structure
File/Folder | Path | Description |
---|---|---|
πLightable-Laravel | root: | The main folder of our project. |
πapp | app/ | A Directory for controllers. |
πbootstrap | bootstrap/ | A Directory for cache. |
π config | config/ | A Directory for config. |
π database | database/ | All database schema we can store here. |
πpublic | public/ | All assets including css and js are stored after gulp build. |
π resources | resources/ | All the blade files are here. |
π routes | routes/ | All the routing file are here. |
π storage | storage/ | All cache and log files here. |
π tests | tests/ | All tests files will be here. |
Light Able React & Laravel Files
File | Path | Description |
---|---|---|
.env | /.env | Set all the credentials |
artisan | /artisan | Artisan file |
composer.json | /composer.json | All the Laravel packages will be in this file |
package.json | /package.json | All the packages |
vite.config.js | /vite.config.js | Configure all the Vite settings. |
Last updated