Skip to content

Instantly share code, notes, and snippets.

@mmiliaus
Last active August 29, 2015 14:02
Show Gist options
  • Save mmiliaus/adc60aa0c216ea6dc73a to your computer and use it in GitHub Desktop.
Save mmiliaus/adc60aa0c216ea6dc73a to your computer and use it in GitHub Desktop.

Controllers

php artisan controller:make PhotoController

Views

## Assets

php artisan asset:publish --path="vendor/twitter/bootstrap/dist/css/" bootstrap/css

Migrations

php artisan migrate:make create_comments_table
php artisan migrate:make add_votes_to_user_table --table=users

php artisan migrate

php artisan migrate:rollback
# rollback all migrations
php artisan migrate:reset

## Seed

php artisan db:seed --class=UserTableSeeder

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