@extends('emails.layout') @section('body') @php $daysLeft = now()->diffInDays($invoice->due_date, false); @endphp
⏰ Payment Reminder

@if($daysLeft > 0) Invoice {{ $invoice->invoice_number }} is due in {{ $daysLeft }} day(s) on {{ $invoice->due_date->format('d/m/Y') }}. @else Invoice {{ $invoice->invoice_number }} is due today. @endif

Friendly payment reminder

This is a reminder from {{ $invoice->user->business_name }} that your invoice {{ $invoice->invoice_number }} for ₦{{ number_format($invoice->total, 2) }} is due soon.

{{ $invoice->invoice_number }}
₦{{ number_format($invoice->total, 2) }}
{{ $invoice->due_date->format('d/m/Y') }}
{{ $invoice->user->business_name }}
💳   Pay Now — ₦{{ number_format($invoice->total, 2) }}
@if($invoice->user->bank_name)
Bank Transfer
{{ $invoice->user->bank_name }} · {{ $invoice->user->account_number }} · {{ $invoice->user->account_name }}
@endif @endsection