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 is the most basic route?"
Topic
Laravel
Question
Which of the following is the most basic route?
Option
Select Option (Optional)...
Route::get('/greeting', function () { return 'Hello World'; });
Route::get('/user', [UserController::class, 'index']);
Route::get('/user', 'UserController@index')->name('user.index');
Issue
Send
->