Let us see what’s inside the installed Laravel folder ‘blog’. It has folders like ‘app’, ‘bootstrap’, ‘config’, ‘database’, ‘public’, ‘resources’, ‘storage’, ‘tests’, ‘vendor’, and a few more files, including a ‘composer.json’ file.
Let us first see how the file structure looks (Figure 3-1).
Figure 3-1. Laravel 5.3.18 file structure
As you see, each folder and its included files have their own roles clearly defined. You should not try to change or tweak any source code.
The ‘app’ folder is extremely important. ...