Skip to content

Instantly share code, notes, and snippets.

@lamngockhuong
Last active December 30, 2017 16:30
Show Gist options
  • Select an option

  • Save lamngockhuong/4eb435cfcaa8878eedb237a35606c6b6 to your computer and use it in GitHub Desktop.

Select an option

Save lamngockhuong/4eb435cfcaa8878eedb237a35606c6b6 to your computer and use it in GitHub Desktop.
[Laravel Commands] #laravel
Create new site with laravel:
laravel new blog
Run artisan server
php artisan serve
Generate key in laravel
php artisan key:generate

Migration

Create a migration
php artisan make:migration create_users_table --create=users

php artisan make:migration add_votes_to_users_table --table=users
Run migrate
php artisan migrate


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment