mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
17 lines
706 B
PHP
17 lines
706 B
PHP
|
|
<div class="timeline schedule">
|
|
<div class="panel panel-info">
|
|
<div class="panel-heading">
|
|
<strong>{{ trans('cachet.incidents.scheduled') }}</strong>
|
|
</div>
|
|
<div class="list-group">
|
|
@foreach($scheduled_maintenance as $schedule)
|
|
<div class="list-group-item">
|
|
<strong>{{ $schedule->name }}</strong> <small class="date"><abbr class="timeago" data-toggle="tooltip" data-placement="right" title="{{ $schedule->scheduled_at_formatted }}" data-timeago="{{ $schedule->scheduled_at_iso }}"></abbr></small>
|
|
{!! $schedule->formattedMessage !!}
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</div>
|