invoiceninja/resources/views/emails/invoice_html.blade.php

12 lines
240 B
PHP
Raw Normal View History

<!DOCTYPE html>
<html lang="{{ App::getLocale() }}">
<head>
<meta charset="utf-8">
</head>
2015-03-17 07:45:25 +10:00
<body>
2017-01-12 15:12:02 +02:00
@if ($account->emailMarkupEnabled())
2015-12-16 13:49:26 +02:00
@include('emails.partials.client_view_action')
2015-04-14 21:58:07 +03:00
@endif
2015-04-06 16:58:47 +10:00
{!! $body !!}
2015-03-17 07:45:25 +10:00
</body>
</html>