Skip to content

Instantly share code, notes, and snippets.

@wouerner
Last active December 17, 2015 00:59
Show Gist options
  • Save wouerner/5524918 to your computer and use it in GitHub Desktop.
Save wouerner/5524918 to your computer and use it in GitHub Desktop.
Commands Artisan Laravel 4
//criando um controller restful
artisan controller:make FooController
//criando um controller restful com criação opcional dos metodos.
artisan controller:make FooController --only="index,show"
//criando um controller restful menos os metodos.
artisan controller:make FooController --except="destroy"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment