@extends('layout.dashboard') @section('content')
{{ trans('dashboard.incidents.incidents') }} > {{ trans('dashboard.incidents.updates.title', ['incident' => $incident->name]) }}
{{ trans('dashboard.incidents.updates.add.title') }}
@include('partials.errors')
@foreach($incident->updates as $update)
{{ Str::words($update->message, 8) }}

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

@endforeach
@stop