diff --git a/app/routes/dashboard.php b/app/routes/dashboard.php index f9e33be1c..3e6baff3f 100644 --- a/app/routes/dashboard.php +++ b/app/routes/dashboard.php @@ -16,7 +16,7 @@ Route::group(['before' => 'auth', 'prefix' => 'dashboard'], function() { Route::get('incidents', ['as' => 'dashboard.incidents', 'uses' => 'DashIncidentController@showIncidents']); Route::get('incidents/add', ['as' => 'dashboard.incidents.add', 'uses' => 'DashIncidentController@showAddIncident']); Route::post('incidents/add', 'DashIncidentController@createIncidentAction'); - Route::get('incidents/template', ['as' => 'dashboard.incident-template', 'uses' => 'DashIncidentController@showAddIncidentTemplate']); + Route::get('incidents/template', ['as' => 'dashboard.incidents.template', 'uses' => 'DashIncidentController@showAddIncidentTemplate']); Route::post('incidents/template', 'DashIncidentController@createIncidentTemplateAction'); // Metrics diff --git a/app/views/partials/dashboard/sidebar.blade.php b/app/views/partials/dashboard/sidebar.blade.php index 8ad0aa2a1..d86cba121 100644 --- a/app/views/partials/dashboard/sidebar.blade.php +++ b/app/views/partials/dashboard/sidebar.blade.php @@ -27,8 +27,8 @@ {{ Lang::get('cachet.dashboard.incident-add') }} -