mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
41 lines
978 B
PHP
41 lines
978 B
PHP
<script type="application/ld+json">
|
|
[
|
|
@if ($entityType == ENTITY_INVOICE)
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "Invoice",
|
|
"paymentStatus": "{{ $invoice->present()->paymentStatus }}",
|
|
@if ($invoice->due_date)
|
|
"paymentDue": "{{ $invoice->due_date }}T00:00:00+00:00",
|
|
@endif
|
|
"provider": {
|
|
"@type": "Organization",
|
|
"name": "{{ $account->getDisplayName() }}"
|
|
},
|
|
"broker": {
|
|
"@type": "Organization",
|
|
"name": "Invoice Ninja",
|
|
"url": "{{ NINJA_WEB_URL }}"
|
|
},
|
|
"totalPaymentDue": {
|
|
"@type": "PriceSpecification",
|
|
"price": "{{ $account->formatMoney(isset($payment) ? $payment->amount : $invoice->getRequestedAmount(), $client) }}"
|
|
},
|
|
"action": {
|
|
"@type": "ViewAction",
|
|
"url": "{{ $link }}"
|
|
}
|
|
},
|
|
@endif
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "EmailMessage",
|
|
"action": {
|
|
"@type": "ViewAction",
|
|
"url": "{{ $link }}",
|
|
"name": {!! json_encode(trans("texts.view_{$entityType}")) !!}
|
|
}
|
|
}
|
|
]
|
|
</script>
|