Rappasoft
Packages & Docs
Products
Blog
Resources
Quizzes
Snippets
Sign In
Menu
Packages & Docs
Products
Blog
Resources
Quizzes
Snippets
About
Quiz Question Issue
"Which of these would produce a route with the name "frontend.profile"? (Select all that apply)"
Topic
Laravel
Question
Which of these would produce a route with the name "frontend.profile"? (Select all that apply)
Option
Select Option (Optional)...
Route::get( '/user/profile', [UserProfileController::class, 'show'] )->name('frontend.profile');
Route::group(['as' => 'frontend.'], function() { Route::get( '/user/profile', [UserProfileController::class, 'show'] )->name('profile'); });
Route::get( '/user/profile', [UserProfileController::class, 'show'] )->name('profile');
Route::get( '/user/profile', [UserProfileController::class, 'show'] )->frontend('profile');
Issue
Send
->