* @author Connor S. Parks */ class BaseRoutes { /** * Defines if these routes are for the browser. * * @var bool */ public static $browser = true; /** * Define the dashboard base routes. * * @param \Illuminate\Contracts\Routing\Registrar $router * * @return void */ public function map(Registrar $router) { $router->group([ 'middleware' => ['auth'], 'namespace' => 'Dashboard', ], function (Registrar $router) { $router->get('admin', 'DashboardController@redirectAdmin'); $router->group(['prefix' => 'dashboard'], function (Registrar $router) { $router->get('/', [ 'as' => 'get:dashboard', 'uses' => 'DashboardController@showDashboard', ]); }); }); } }