Artisan Commands

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…

Read More

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…

Read More

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…

Read More

Laravel

Laravel is an open-source PHP framework, developed by Taylor Otwell. Laravel intended for developing web applications in the model-view-controller (MVC) pattern. It is based on Symfony. Laravel offers a rich set of functionalities such as a command line interface called…

Read More

PHP The Revolution

Hypertext Preprocessor (PHP), is an open-source general-purpose service side scripting language. It is developed in 1994 by Rasmus Lerdorf. Since then it creates a revolution in web development by creating dynamic content on the web. To develop dynamic web pages…

Read More