Laravel Cheat Sheet Command Page

Posted on

Create a New Project Laravel

composer create-project laravel/laravel folder_name

Model

Create  a New Model

php artisan make:model model_name

Controller

Create a New Controller

php artisan make:controller controller_name

Migration Script

Create a New Migration Script

php artisan make:migrate migration_script_name

Leave a Reply