@extends('layouts.email') @section('content')
Dear {{ $invoice->customer->company_name }},
Here's a reminder that your payment is due for this invoice.
| Send to | {{$invoice->customer->company_name }} <{{ $invoice->customer->email }}> |
| Sent from | {{ $invoice->user->name }} <{{ $invoice->user->email }}> |
| Invoice number | {{ $invoice->invoice_no }} |
| Date payment is due | @date($invoice->due_on) |
| Amount |
@currency($invoice->total) |
Yours sincerely,
Basetax
@endsection