@extends('layouts.super-admin') @section('title', 'Notifikasi') @section('page-title', 'Notifikasi Sistem') @section('page-description', 'Daftar notifikasi peringatan dan informasi sistem') @section('content')

Notifikasi

@if($unreadCount > 0) {{ $unreadCount }} belum dibaca @endif
@csrf
@forelse($notifications as $notification)
@switch($notification->type) @case('battery_low') @break @case('device_offline') @break @case('high_temperature') @break @case('earthquake_alert') @break @default @endswitch
{{ $notification->title }}
{{ $notification->message }}
{{ $notification->created_at->diffForHumans() }} @if($notification->data && isset($notification->data['location'])) {{ $notification->data['location'] }} @endif
@if(!$notification->is_read)
@csrf
@endif
@empty

Belum ada notifikasi

@endforelse
@endsection