Last active
February 19, 2018 11:51
-
-
Save veeeeeeeeeee/98e8caecb7f35e68f36507a77d7de6de to your computer and use it in GitHub Desktop.
Laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
composer create-project --prefer-dist laravel/laravel MyProject | |
@@@@@@@@@@@@@@@@@@ | |
php artisan make:model MyModel | |
php artisan make:model MyModel --migration | |
php artisan make:migration create_models_table --table=models | |
php artisan make:controller MyModelController --model=Model | |
php artisan migrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment