Artisan commands are very useful while developing an application in laravel framework. A command-line interface provided by Laravel framework by default to interact with the application is known as artisan. Here are some notes and useful artisan commands. The syntax…
Category: Laravel
Structure of Laravel Application
Laravel application has a very clean and managed directory structure. It is not compulsory to follow the structure of laravel. You can manage your application code as per your convenience. The following image shows the directory structure of the laravel…
Starting with the Laravel
The laravel framework uses Composer for dependency management. Creating a Project To create a new project in the laravel open command prompt in your web server and type the following command. This will create a new project using a composer…