From 700c9366627a1341bd17cb0f4e5e5a535b7a66dc Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sat, 13 Jan 2018 15:47:31 +0100 Subject: [PATCH] Restore add incident update functionality --- app/Http/Controllers/Dashboard/IncidentController.php | 2 +- .../incidents/{update.blade.php => updates/add.blade.php} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename resources/views/dashboard/incidents/{update.blade.php => updates/add.blade.php} (100%) diff --git a/app/Http/Controllers/Dashboard/IncidentController.php b/app/Http/Controllers/Dashboard/IncidentController.php index 61e6c499..0bd37646 100644 --- a/app/Http/Controllers/Dashboard/IncidentController.php +++ b/app/Http/Controllers/Dashboard/IncidentController.php @@ -309,7 +309,7 @@ class IncidentController extends Controller */ public function showCreateIncidentUpdateAction(Incident $incident) { - return View::make('dashboard.incidents.update')->withIncident($incident); + return View::make('dashboard.incidents.updates.add')->withIncident($incident); } /** diff --git a/resources/views/dashboard/incidents/update.blade.php b/resources/views/dashboard/incidents/updates/add.blade.php similarity index 100% rename from resources/views/dashboard/incidents/update.blade.php rename to resources/views/dashboard/incidents/updates/add.blade.php