Renamed Scheduled Maintenance to just Maintenance. Closes #2516

This commit is contained in:
James Brooks
2017-07-18 22:35:20 +01:00
parent a23b0c419a
commit 964eaa3ce0
6 changed files with 15 additions and 15 deletions

View File

@@ -54,7 +54,7 @@ class ScheduleController extends Controller
{
$schedule = Schedule::orderBy('created_at')->get();
return View::make('dashboard.schedule.index')
return View::make('dashboard.maintenance.index')
->withPageTitle(trans('dashboard.schedule.schedule').' - '.trans('dashboard.dashboard'))
->withSchedule($schedule);
}
@@ -68,7 +68,7 @@ class ScheduleController extends Controller
{
$incidentTemplates = IncidentTemplate::all();
return View::make('dashboard.schedule.add')
return View::make('dashboard.maintenance.add')
->withPageTitle(trans('dashboard.schedule.add.title').' - '.trans('dashboard.dashboard'))
->withIncidentTemplates($incidentTemplates);
}
@@ -111,7 +111,7 @@ class ScheduleController extends Controller
{
$incidentTemplates = IncidentTemplate::all();
return View::make('dashboard.schedule.edit')
return View::make('dashboard.maintenance.edit')
->withPageTitle(trans('dashboard.schedule.edit.title').' - '.trans('dashboard.dashboard'))
->withIncidentTemplates($incidentTemplates)
->withSchedule($schedule);