Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added information about --invokable flag #4389

Merged
merged 1 commit into from
Jul 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added information about --invokable flag
Added information about --invokable flag (creating single action controller)
  • Loading branch information
Ilya Sakovich authored Jul 22, 2018
commit c7bce2e8292f2e640ae8eca59dc4d56130d088e2
4 changes: 4 additions & 0 deletions controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ If you would like to define a controller that only handles a single action, you
}
}

Using the `make:controller` Artisan command, we can quickly create such a controller:

php artisan make:controller ShowProfile --invokable

When registering routes for single action controllers, you do not need to specify a method:

Route::get('user/{id}', 'ShowProfile');
Expand Down