* @author Graham Campbell */ class SetupRoutes { /** * Defines if these routes are for the browser. * * @var bool */ public static $browser = true; /** * Define the setup routes. * * @param \Illuminate\Contracts\Routing\Registrar $router * * @return void */ public function map(Registrar $router) { $router->group([ 'middleware' => ['setup'], 'prefix' => 'setup', ], function (Registrar $router) { $router->get('/', [ 'as' => 'get:setup', 'uses' => 'SetupController@getIndex', ]); }); } }