Rappasoft
Packages & Docs
Products
Blog
Resources
Quizzes
Snippets
Sign In
Menu
Packages & Docs
Products
Blog
Resources
Quizzes
Snippets
About
Quiz Question Issue
"Which of the following would match both the `get` and `post` HTTP verbs:"
Topic
Laravel
Question
Which of the following would match both the `get` and `post` HTTP verbs:
Option
Select Option (Optional)...
Route::match(['get', 'post'], '/', function () { // });
Route::choose(['get', 'post'], '/', function () { // });
Route::forAny(['get', 'post'], '/', function () { // });
Route::grab(['get', 'post'], '/', function () { // });
Issue
Send
->