mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
17 lines
645 B
PHP
17 lines
645 B
PHP
@component('email.template.admin-light', ['logo' => 'https://www.invoiceninja.com/wp-content/uploads/2015/10/logo-white-horizontal-1.png', 'settings' => $settings])
|
|
<div class="center">
|
|
<h1>Whoops, migration failed for {{ $company->present()->name() }}.</h1>
|
|
<p>Looks like your migration failed. Here's the error message:</p>
|
|
|
|
<pre>
|
|
@if(\App\Utils\Ninja::isHosted())
|
|
{!! $exception->getMessage() !!}
|
|
{!! $content !!}
|
|
@else
|
|
{!! $exception->getMessage() !!}
|
|
{!! $content !!}
|
|
@endif
|
|
</pre>
|
|
</div>
|
|
@endcomponent
|