@extends('layout.dashboard') @section('content')
@includeWhen(isset($subMenu), 'dashboard.partials.sub-sidebar')
{{ trans('dashboard.schedule.schedule') }} {{ trans('dashboard.schedule.add.title') }}
@include('partials.errors')

{!! trans_choice('dashboard.schedule.logged', $schedule->count(), ['count' => $schedule->count()]) !!}

@foreach($schedule as $incident)
{{ $incident->name }}
{{ trans('dashboard.schedule.scheduled_at', ['timestamp' => $incident->scheduled_at_formatted]) }} @if($incident->message)

{{ Str::words($incident->message, 5) }}

@endif
@endforeach
@stop