* @author Connor S. Parks */ class MetricRoutes { /** * Defines if these routes are for the browser. * * @var bool */ public static $browser = true; /** * Define the dashboard metric routes. * * @param \Illuminate\Contracts\Routing\Registrar $router * * @return void */ public function map(Registrar $router) { $router->group([ 'middleware' => ['auth'], 'namespace' => 'Dashboard', 'prefix' => 'dashboard/metrics', ], function (Registrar $router) { $router->get('/', [ 'as' => 'get:dashboard.metrics', 'uses' => 'MetricController@showMetrics', ]); $router->get('create', [ 'as' => 'get:dashboard.metrics.create', 'uses' => 'MetricController@showAddMetric', ]); $router->post('create', [ 'as' => 'post:dashboard.metrics.create', 'uses' => 'MetricController@createMetricAction', ]); $router->get('{metric}', [ 'as' => 'get:dashboard.metrics.edit', 'uses' => 'MetricController@showEditMetricAction', ]); $router->post('{metric}', [ 'as' => 'post:dashboard.metrics.edit', 'uses' => 'MetricController@editMetricAction', ]); $router->delete('{metric}', [ 'as' => 'delete:dashboard.metrics.delete', 'uses' => 'MetricController@deleteMetricAction', ]); }); } }