@extends('user.layout.master') @section('title', 'Notifications') @section('content')

Notifications

Stay updated with important alerts and messages.

@if ($notifications->where('pivot.is_read', 0)->count() > 0)
@csrf
@endif
@if (session('success')) @endif
@if ($notifications->hasPages())
{{ $notifications->links() }}
@endif
@endsection