mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
17 lines
553 B
PHP
17 lines
553 B
PHP
@component('email.template.admin', ['logo' => $logo, 'settings' => $settings])
|
|
<div class="center">
|
|
<h1>{{ ctrans('texts.migration_failed_label') }}</h1>
|
|
<p>{{ ctrans('texts.migration_failed') }} {{ $company->present()->name() }}</p>
|
|
|
|
<pre>
|
|
@if(\App\Utils\Ninja::isHosted())
|
|
{!! $exception->getMessage() !!}
|
|
{!! $content !!}
|
|
@else
|
|
{!! $exception->getMessage() !!}
|
|
{!! $content !!}
|
|
@endif
|
|
</pre>
|
|
</div>
|
|
@endcomponent
|