Laravel based app directory structure
To start working with Laravel we first have to understand what a basic Laravel based app consists of. Analysis and understanding of all the files and folders provided for the base of app is crucial for successful development. It eases the whole process a lot and makes it more enjoyable as well. Below we are going to explore the most important elements of directory structure: Here is the Root Directory: .env file This file allows us to configurate all the environmental aspects of the application. In .env file we can among others: - Set stage of development (local or production) - Set MySql connection for our database - Choose app's environment such as server type and port - Set up mailing connection and options - Set up connection with AWS server Storage Directory this folder consists of 3 other folders which are: app, framework and logs. - app directory is used to store any files generated by the application. It also contains a public folder which is used to store user-generated...