@extends ('layouts.in') @section ('body')
@foreach ($list as $row) @php ($route = route('alarm.update', $row->id)) @endforeach
{{ __('alarm-index.type') }} {{ __('alarm-index.name') }} {{ __('alarm-index.config') }} {{ __('alarm-index.vehicles') }} {{ __('alarm-index.notifications') }} {{ __('alarm-index.created_at') }} {{ __('alarm-index.telegram') }} {{ __('alarm-index.enabled') }}
{{ $row->typeFormat()->title() }} {{ $row->name }} @arrayAsBadges($row->typeFormat()->config()) {{ $row->vehicles_count }} {{ $row->notifications_count.($row->notifications_pending_count ? ('/'.$row->notifications_pending_count) : '') }} @dateWithTimezone($row->created_at) @status($row->telegram) @status($row->enabled)
@stop