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

19 lines
609 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
<h1>Whoops, migration failed.</h1>
<p>Looks like your migration failed. Here's the error message:</p>
<pre>
2021-05-26 05:01:55 +02:00
@if(\App\Utils\Ninja::isHosted())
2021-05-26 05:02:40 +02:00
{!! $exception->getMessage() !!}
{!! $content !!}
2021-05-26 04:37:16 +02:00
@else
{!! $exception->getMessage() !!}
{!! $content !!}
2021-05-26 04:37:16 +02:00
@endif
</pre>
@endcomponent