【发布时间】:2021-07-04 08:57:21
【问题描述】:
我也有这样的路线。
Route::group(['prefix'=>LaravelLocalization::setLocale(),
'as'=>'front.',
'middleware'=>['localeSessionRedirect','localizationRedirect',]],function ()
{
Route::get('/view/post/{id}', [ExtraController::class, 'SinglePost'])->name('post_view');
});
所以我想在刀片中调用这条路线。我如何获得 post_view 路线?
【问题讨论】: