阅读文档后,我对 Laravel 中的命名路由仍然只有一个模糊的概念。
你能帮我理解吗?
Route::get('user/profile', function () {
//
})->name('profile');
Route::get('user/profile', 'UserProfileController@show')->name('profile');
它说:
为给定路由指定名称后,您可以在通过全局路由功能生成 URL 或重定向时使用该路由的名称
我不明白这句话的第二部分是什么意思,关于生成 URL 或重定向。
profile在上面的例子中,生成的 URL 是什么?我将如何使用它?
慕容708150
慕田峪9158850