@extends('layouts.app') @section('title', 'Maintenance windows') @section('content')
Suppress alerting on devices that are being worked on, and tell customers in advance.
| Window | Type | Starts | Ends | Devices | Suppression | Status | |
|---|---|---|---|---|---|---|---|
|
{{ $window->title }}
@if ($window->description)
{{ Str::limit($window->description, 90) }}
@endif
|
{{ title_case_words($window->type) }} | {{ $window->starts_at->format('j M Y H:i') }} | {{ $window->ends_at->format('j M Y H:i') }} | {{ $deviceCount }} | @if ($window->suppress_alerts)alerts muted@endif @if ($window->notify_customers)customers notified@endif @unless ($window->suppress_alerts || $window->notify_customers) none @endunless | {{ title_case_words($window->status) }} @if ($inProgress)in progress@endif | @if (! $isDone && $window->status !== 'completed') @endif |
| @include('components.empty-state', [ 'title' => 'No maintenance scheduled', 'message' => 'Plan a window before taking equipment down for work.', ]) | |||||||