@extends('layout.master') @section('title', array_get($incident->meta, 'seo.title', $incident->name).' | '.$siteTitle) @section('description', array_get($incident->meta, 'seo.description', trans('cachet.meta.description.incident', ['name' => $incident->name, 'date' => $incident->occurred_at_formatted]))) @section('bodyClass', 'no-padding') @section('outer-content') @include('partials.nav') @stop @section('content')

{{ $incident->name }} {{ $incident->occurred_at_formatted }}


{!! $incident->formatted_message !!}
@if($incident->updates)
@foreach ($incident->updates as $update)
@if($currentUser) @endif
{!! $update->formatted_message !!}
@endforeach
@endif @stop @section('bottom-content') @include('partials.footer') @stop