@extends('layouts.app') @section('title', 'Notifikasi') @section('page-title', 'Notifikasi') @section('content')
Kembali ke Dashboard

Semua Notifikasi @if($notifications->where('is_read', false)->count() > 0) {{ $notifications->where('is_read', false)->count() }} baru @endif

@if($notifications->count() > 0)
@csrf @method('DELETE')
@endif
@if($notifications->count() === 0)

Belum ada notifikasi

@else @foreach($notifications as $notif)

{{ $notif->title }}

@if(!$notif->is_read) @endif

{{ $notif->message }}

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

@csrf @method('DELETE')
@endforeach @endif
@endsection