@extends('layouts.adminmaster')
@section('title', 'My Notifications')
@section('content')
My Notifications
@forelse(auth()->user()->notifications as $notif)
{{ $notif->data['message'] }}
{{ $notif->created_at->diffForHumans() }}
@empty
No notifications yet.
@endforelse
@endsection