@extends('layouts.app')
@section('title', 'Notifications')
@section('header', 'Notifications')
@section('subheader', $unreadCount . ' unread')
@section('header-actions')
@if ($unreadCount > 0)
@endif
@endsection
@section('content')
@forelse ($notifications as $notification)
@php
$data = $notification->data;
$isUnread = $notification->read_at === null;
@endphp
-
@if ($isUnread)
New
@endif
{{ $data['message'] ?? '' }}
{{ $notification->created_at->diffForHumans() }}
@empty
-
You have no notifications.
@endforelse
{{ $notifications->links() }}
@endsection