Deploy Ladill Woo Manager / deploy (push) Failing after 2s
Standalone app with SSO shell, WordPress plugin connect flow, webhook ingest, fulfillment inbox, and plugin activation API — no payment processing. Co-authored-by: Cursor <cursoragent@cursor.com>
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<x-mail::message>
|
|
# Invoice {{ $invoice->invoice_number }}
|
|
|
|
Hi {{ $invoice->client_name }},
|
|
|
|
**{{ $invoice->companyName() }}** has sent you an invoice for
|
|
**{{ invoice_money((int) $invoice->total_minor, $invoice->currency) }}**@if($invoice->due_date), due {{ $invoice->due_date->format('F j, Y') }}@endif.
|
|
|
|
<x-mail::table>
|
|
| Item | Qty | Amount |
|
|
|:---- |:---:| ------:|
|
|
@foreach($invoice->lines as $line)
|
|
| {{ $line->description }} | {{ rtrim(rtrim(number_format($line->quantity, 2), '0'), '.') }} | {{ invoice_money((int) $line->line_total_minor, $invoice->currency) }} |
|
|
@endforeach
|
|
@if($invoice->vat_enabled && (int) $invoice->tax_minor > 0)
|
|
| **Tax (20%)** | | {{ invoice_money((int) $invoice->tax_minor, $invoice->currency) }} |
|
|
@endif
|
|
| **Total** | | **{{ invoice_money((int) $invoice->total_minor, $invoice->currency) }}** |
|
|
</x-mail::table>
|
|
|
|
<x-mail::button :url="$url">
|
|
View invoice
|
|
</x-mail::button>
|
|
|
|
Open your invoice online to **download, print, share, or pay** it securely.
|
|
|
|
Thanks,<br>
|
|
{{ $invoice->companyName() }}
|
|
|
|
<x-slot:subcopy>
|
|
If the button above doesn't work, copy and paste this link into your browser:
|
|
[{{ $url }}]({{ $url }})
|
|
</x-slot:subcopy>
|
|
</x-mail::message>
|