@extends('web_user.layouts.app') @section('title', 'Beranda Auditor') @section('content')
{{-- Header --}}

Selamat Datang, Auditor

Kelola dan evaluasi proses audit anda dengan mudah

Tambah Audit
{{-- Content --}}
{{-- Cards --}}
Total Audit
{{ $totalAudit }}
Dari seluruh audit anda
Audit Selesai
{{ $totalSelesai }}
Status Close
Audit Belum Selesai
{{ $totalBelum }}
Status Open
{{-- Grafik & Notifikasi --}}
{{-- Grafik --}}

Grafik Berdasarkan Tema

{{-- Notifikasi --}}

Notifikasi Belum Dibaca

@php $unread = auth()->user()->unreadNotifications()->take(3)->get(); @endphp @if($unread->isNotEmpty())
    @foreach($unread as $notif)
  • {{ $notif->data['judul'] ?? 'Notifikasi' }}

    {{ \Illuminate\Support\Str::limit($notif->data['pesan'] ?? '-', 70) }}

    {{ $notif->created_at->diffForHumans() }}

  • @endforeach
@else
Semua notifikasi sudah dibaca.
@endif
@endsection @push('scripts') @endpush