'{trans}', 'where' => ['trans' => Trans::keys('|')], ], function () { include('routes.php'); } ); } // Workflow routes for profile Route::prefix('{guard}/profile')->group(function () { Route::get('/workflow/{profile}/{user}', 'ProfileWorkflowController@get') ->name('bixo.profile.workflow'); Route::post('/workflow/{profile}/{user}', 'ProfileWorkflowController@post'); Route::get('/action/{profile}/{user}', 'ProfileActionController@get') ->name('bixo.profile.action'); Route::post('/action/{profile}/{user}', 'ProfileActionController@post'); });