Framework

Laravel Artisan Console Commands

Artisan is the command-line interface included with Laravel. It provides a number of helpful commands that can assist you while you build your application. To view a list of all available Artisan commands , you may use the list command: Laravel create controller php artisan make:controller UserController php artisan make:controller[...]

By |November 3, 2019|Tags: , , |

Laravel: Factories and seeders

Factories and Seeders are used for generating fake dummy data in Laravel. Laravel includes a simple method of seeding your database with test data using seed classes. All seed classes are stored in the database/seeds directory. Seed classes may have any name you wish, but probably should follow some sensible[...]

By |October 5, 2019|Tags: , , |

Laravel: Getting Start

What is Laravel? Laravel is a free, open-source PHP framework, created by Taylor Otwell and intended for the development of web applications following the Model View Controller (MVC) architectural pattern and it is based on Symfony. The latest stable release of Laravel is Version 11. Why Laravel? It's a popular[...]

By |October 5, 2019|Tags: , , |
Go to Top