From f15bf48747c66348411f6b28356c8fdb90e0d8c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jeroen=20Coupe=CC=81?= Date: Mon, 17 Oct 2016 23:28:15 +0200 Subject: [PATCH] Template overview broken when templates exists Due to a typo in the routing table the page breaks once there are templates available. Once the typo is resolved everything works as expected --- app/Http/Routes/Dashboard/TemplateRoutes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Routes/Dashboard/TemplateRoutes.php b/app/Http/Routes/Dashboard/TemplateRoutes.php index 7e41a97e4288..338de8a35f14 100644 --- a/app/Http/Routes/Dashboard/TemplateRoutes.php +++ b/app/Http/Routes/Dashboard/TemplateRoutes.php @@ -58,7 +58,7 @@ public function map(Registrar $router) 'uses' => 'IncidentController@editTemplateAction', ]); $router->delete('{incident_template}', [ - 'as' => 'delete::dashboard.templates.delete', + 'as' => 'delete:dashboard.templates.delete', 'uses' => 'IncidentController@deleteTemplateAction', ]); });