@extends('portal.layout') @section('title', 'Watch Notifications') @section('content')
Back to Watches

{{ $watch->name }} — Notifications

Regulatory change alerts for this watch.

@if($notifications->count())
@foreach($notifications as $notif)
{{ $notif->change_type }}
{{ $notif->summary }}
{{ $notif->created_at->diffForHumans() }} @if($notif->read_at) · Read {{ $notif->read_at->diffForHumans() }} @endif
@if(!$notif->read_at) @endif
@endforeach
{{ $notifications->links() }}
@else
No Notifications Yet
You'll see alerts here when regulations change.
@endif
@endsection @section('scripts') @endsection