php 具有名称路由的路由组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 具有名称路由的路由组相关的知识,希望对你有一定的参考价值。

<?php

Route::prefix('/user')->group(function () {
	Router::get('/dashboard', 'UserController@index')->name('user.dashboard');
    Router::get('/profile', 'UserController@profile')->name('user.profile');
});

以上是关于php 具有名称路由的路由组的主要内容,如果未能解决你的问题,请参考以下文章

组前缀内的路由名称不包括前缀

具有多个名称的 Laravel 路由

【PHP】laravel中获取当前路由名称

Laravel 5.2 - 在中间件请求中获取路由组名称

具有不同 HTTP 请求类型的两条路由如何共享相同的名称?

CodeIgniter - 如何路由具有其他名称的控制器?