Notification Centre
@php
$notificationCount = 0;
@endphp
@if (count($missingFields) > 0)
Pending Upload:
Hi, {{ $user->first_name }}! Please upload the following missing information:
-
@foreach ($missingFields as $field)
- {{ $field }} @endforeach
All Information Complete
Thank you for providing all the necessary information!
@endif2 August 2024
Pending Payments:
Hi, {{ $user->first_name }}! Please complete the following payments:
-
@foreach ($pendingItems as $item)
- {{ $item }} @endforeach
{{ \Carbon\Carbon::now()->format('j F Y') }}
All payments are complete.
@endif @if ($daysRemaining !== null && $daysRemaining <= 2)Your {{ $coverType }} policy is about to expire
@if ($autorenew === 'on')Since auto-renew is on, you don't need to do anything.
@elseYou've chosen not to auto-renew. Click here to renew now or your policy will be cancelled for the following term.
@endifDays remaining: {{ $daysRemaining }}
@php $notificationCount++; @endphp31 July 2024