@extends ('domains.alarm.update-layout') @section ('content')
@foreach ($notifications as $each) @endforeach
{{ __('alarm-update-alarm-notification.name') }} {{ __('alarm-update-alarm-notification.message') }} {{ __('alarm-update-alarm-notification.trip') }} {{ __('alarm-update-alarm-notification.created_at') }} {{ __('alarm-update-alarm-notification.telegram') }} {{ __('alarm-update-alarm-notification.closed_at') }} {{ __('alarm-update-alarm-notification.actions') }}
{{ $each->name }} {{ $each->typeFormat()->message() }} @if ($each->trip) {{ $each->trip->name }} @endif @dateLocal($each->date_at) @status($each->telegram) @if ($each->closed_at) @status(true) @else @status(false) @endif @icon('trash', 'w-4 h-4')
@include ('molecules.delete-modal', [ 'action' => 'delete' ]) @stop