@if(isset($subMenu))
@include('partials.dashboard.sub-sidebar')
@endif
@include('partials.dashboard.errors')
@foreach($schedule as $incident)
{{ $incident->name }}
{{ trans('dashboard.schedule.scheduled_at', ['timestamp' => $incident->scheduled_at_iso]) }}
@if($incident->message)
{{ Str::words($incident->message, 5) }}
@endif
@endforeach
@stop