@extends('portal.layout')
@section('title', 'Regulatory Watches')
@section('content')
Regulatory Watch
Regulatory Watches
Get notified when regulations change in zones or areas you're tracking.
@if(session('success'))
{{ session('success') }}
@endif
{{-- Create Watch --}}
{{-- Watches List --}}
@if($watches->count())
@foreach($watches as $watch)
{{ $watch->name }}
{{ $watch->notifications_count }} notifications
@if($watch->unread_count > 0)
{{ $watch->unread_count }} unread
@endif
View Alerts
@endforeach
@else
No Watches Yet
Create a watch above to track regulatory changes.
@endif
@endsection