diff --git a/resources/views/dashboard/incidents/updates/add.blade.php b/resources/views/dashboard/incidents/updates/add.blade.php index 5fb9dc6a..7fe831fd 100644 --- a/resources/views/dashboard/incidents/updates/add.blade.php +++ b/resources/views/dashboard/incidents/updates/add.blade.php @@ -6,15 +6,14 @@ - {{ trans('dashboard.incidents.incidents') }} + {{ trans('dashboard.incidents.incidents') }} - > {{ trans('dashboard.incidents.update.title') }} + > {{ trans('dashboard.incidents.updates.title', ['incident' => $incident->name]) }} > {{ trans('dashboard.incidents.updates.add.title') }}
@include('dashboard.partials.errors') -

{!! trans('dashboard.incidents.update.subtitle', ['incident' => $incident->name]) !!}

diff --git a/resources/views/dashboard/incidents/updates/edit.blade.php b/resources/views/dashboard/incidents/updates/edit.blade.php index 8de47d59..a65e11ff 100644 --- a/resources/views/dashboard/incidents/updates/edit.blade.php +++ b/resources/views/dashboard/incidents/updates/edit.blade.php @@ -6,15 +6,14 @@
- {{ trans('dashboard.incidents.incidents') }} + {{ trans('dashboard.incidents.incidents') }} - > {{ trans('dashboard.incidents.update.title') }} + > {{ trans('dashboard.incidents.updates.title', ['incident' => $incident->name]) }} > {{ trans('dashboard.incidents.updates.edit.title') }}
@include('dashboard.partials.errors') -

{{ trans('dashboard.incidents.updates.edit.title') }}

diff --git a/resources/views/dashboard/incidents/updates/index.blade.php b/resources/views/dashboard/incidents/updates/index.blade.php index b19d645a..997a0570 100644 --- a/resources/views/dashboard/incidents/updates/index.blade.php +++ b/resources/views/dashboard/incidents/updates/index.blade.php @@ -1,37 +1,40 @@ @extends('layout.dashboard') @section('content') -
- @includeWhen(isset($sub_menu), 'dashboard.partials.sub-sidebar') -
-
- - {{ trans('dashboard.incidents.updates.title', ['incident' => Str::words($incident->name, 5)]) }} - - - {{ trans('dashboard.incidents.updates.add.title') }} - -
-
-
-
- @include('dashboard.partials.errors') +
+ + + {{ trans('dashboard.incidents.incidents') }} + + > {{ trans('dashboard.incidents.updates.title', ['incident' => $incident->name]) }} +
+
+ +
+
+ @include('dashboard.partials.errors') -
- @foreach($updates as $update) -
-
- {{ Str::words($update->message, 8) }} -

{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}

-
- +
+ @foreach($updates as $update) +
+
+ {{ Str::words($update->message, 8) }} +

{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}

+
+ - @endforeach
+ @endforeach