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 any HTTP verb for the given route:"
Topic
Laravel
Question
Which of the following would match any HTTP verb for the given route:
Option
Select Option (Optional)...
Route::any('/', function () { // });
Route::all('/', function () { // });
Route::*('/', function () { // });
Route::get('/', function () { // });
Issue
Send
->