1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/email/migration/failed.blade.php

18 lines
680 B
PHP
Raw Normal View History

@component('email.template.master', ['design' => 'light', 'settings' => $settings])
@slot('header')
@include('email.components.header', ['logo' => 'https://www.invoiceninja.com/wp-content/uploads/2015/10/logo-white-horizontal-1.png'])
@endslot
2021-05-26 05:17:22 +02:00
<h1>Whoops, migration failed for {{ $company->present()->name() }}.</h1>
<p>Looks like your migration failed. Here's the error message:</p>
<pre>
2021-06-09 13:10:22 +02:00
@if(\App\Utils\Ninja::isSelfHost())
2021-05-26 05:02:40 +02:00
{!! $exception->getMessage() !!}
{!! $content !!}
2021-05-26 04:37:16 +02:00
@else
2021-06-09 13:10:22 +02:00
<p>Please contact us at contact@invoiceninja.com for more information on this error.</p>
2021-05-26 04:37:16 +02:00
@endif
</pre>
@endcomponent