Basic Controllers
In MVC framework, the letter ‘C’ stands for Controller. It acts as a directing traffic between Views and Models.
Creating a Controller
Open the command prompt or terminal based on the operating system...
Define Middleware
As the name suggest, Middleware acts as a middle man between request and response. It is a type of filtering mechanism. For example, Laravel includes a middleware that verifies whether user of the application...
Basic Routing
Basic routing is meant to route your request to an appropriate controller. The routes of the application can be defined in app/Http/routes.php file. Here is the general route syntax for each of the possible...
The config directory, as the name implies, contains all of your application's configuration files. In this directory, you will find various files needed to configure database, session, mail, application, services etc.
Basic...
Root Directory
The root directory of Laravel contains various folders and files as shown in the following figure.
app − This directory contains the core code of the application.
bootstrap − This directory contains...