Renewals
@if ($renewals->isEmpty())
No renewals.
@else
@foreach ($renewals as $renewal) @endforeach
Renewed At Expiry Date Amount Invoice Notes Created By
{{ optional($renewal->renewed_at)->format('Y-m-d') }} {{ optional($renewal->expiry_date)->format('Y-m-d') }} {{ $renewal->amount }} {{ $renewal->invoice_number }} {{ $renewal->notes }} {{ $renewal->created_by }}
@endif
SMS Log
@if ($smsLogs->isEmpty())
No SMS logs.
@else
@foreach ($smsLogs as $smsLog) @endforeach
Sent At Phone Message Response
{{ $smsLog->created_at }} {{ $smsLog->phone }} {{ $smsLog->message }} {{ $smsLog->response }}
@endif
Email Log
@if ($emailLogs->isEmpty())
No email logs.
@else
@foreach ($emailLogs as $emailLog) @endforeach
Sent At Email Subject Response
{{ $emailLog->created_at }} {{ $emailLog->email }} {{ $emailLog->subject }} {{ $emailLog->response }}
@endif