File: /var/www/html/punjabcabs/vendor/hesto/multi-auth/src/stubs/routes/map-method.stub
/**
* Define the "{{singularSnake}}" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function map{{singularClass}}Routes()
{
Route::group([
'middleware' => ['web', '{{singularSnake}}', 'auth:{{singularSnake}}'],
'prefix' => '{{singularSlug}}',
'as' => '{{singularSlug}}.',
'namespace' => $this->namespace,
], function ($router) {
require base_path('routes/{{singularSlug}}.php');
});
}