@extends('layouts.app') @section('title','Payment Reminders') @section('page_title','Payment Reminders') @section('content') @forelse($payments as $payment) @empty @endforelse
Project Payment Amount Due Date Status Last Reminder Count Action
{{ $payment->project->project_name ?? '-' }} {{ $payment->payment_title }} {{ $payment->project->currency ?? '' }} {{ $payment->amount }} {{ $payment->due_date }} {{ ucwords($payment->status) }} {{ $payment->last_reminder_sent_at }} {{ $payment->reminder_count }} WhatsApp Send Email View
No payment reminders found.
@endsection