@extends('layout.master') @section('bodyClass', 'no-padding') @section('outer-content') @include('partials.nav') @stop @section('content')

{{ $incident->name }} {{ formatted_date($incident->created_at) }}


{!! $incident->formattedMessage !!}
@if($incident->updates)
@foreach ($incident->updates as $index => $update)
{!! $update->formattedMessage !!}
@endforeach
@endif @stop