@extends('layouts.app')
@section('title', 'Notifikasi')
@section('page-title', 'Notifikasi')
@section('content')
Semua Notifikasi
@if($notifications->where('is_read', false)->count() > 0)
{{ $notifications->where('is_read', false)->count() }} baru
@endif
@if($notifications->count() > 0)
@endif
@if($notifications->count() === 0)
@else
@foreach($notifications as $notif)
{{ $notif->title }}
@if(!$notif->is_read)
@endif
{{ $notif->message }}
{{ $notif->created_at->diffForHumans() }}
@endforeach
@endif
@endsection