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>
|
2020-01-27 21:56:48 +01:00
|
|
|
|
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
|
2021-06-15 15:45:14 +02:00
|
|
|
<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>
|
2021-01-19 11:05:47 +01:00
|
|
|
@endcomponent
|