Renamed Scheduled Maintenance to just Maintenance. Closes #2516
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user