1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/resources/views/email/migration/failed.blade.php

18 lines
656 B
PHP
Raw Normal View History

2021-06-09 17:25:59 +02:00
@component('email.template.admin', ['logo' => $logo, 'settings' => $settings])
2021-06-07 18:11:58 +02:00
<div class="center">
2021-06-09 17:25:59 +02:00
<h1>{{ ctrans('texts.migration_failed_label') }}</h1>
<p>{{ ctrans('texts.migration_failed') }} {{ $company->present()->name() }}</p>
2021-06-07 18:11:58 +02:00
<pre>
2021-08-10 03:40:58 +02:00
@if(\App\Utils\Ninja::isSelfHost() || $is_system)
2021-06-07 18:11:58 +02:00
{!! $exception->getMessage() !!}
{!! $content !!}
@else
2023-02-09 03:51:03 +01:00
@if($special_message)
@endif
<p>Please contact us at contact@invoiceninja.com for more information on this error.</p>
2021-06-07 18:11:58 +02:00
@endif
</pre>
</div>
@endcomponent