2021-08-26 23:36:05 +02:00
|
|
|
@component('email.template.admin', ['settings' => $settings, 'logo' => $logo ?? 'https://www.invoiceninja.com/wp-content/uploads/2015/10/logo-white-horizontal-1.png'])
|
2021-01-19 11:05:47 +01:00
|
|
|
{{-- Body --}}
|
2022-03-30 05:19:40 +02:00
|
|
|
{!! $support_message !!}
|
|
|
|
|
|
|
|
<hr>
|
2019-10-16 22:12:38 +02:00
|
|
|
|
2021-01-19 11:05:47 +01:00
|
|
|
{!! str_replace('\n', '<br>', $system_info) !!}
|
2019-10-16 22:12:38 +02:00
|
|
|
|
2021-01-19 11:05:47 +01:00
|
|
|
@if(@count($laravel_log) > 0)
|
|
|
|
<details>
|
|
|
|
<summary>{{ ctrans('texts.display_log') }}</summary>
|
|
|
|
@foreach($laravel_log as $log_line)
|
|
|
|
<small>{{ $log_line }}</small> <br>
|
|
|
|
@endforeach
|
|
|
|
</details>
|
|
|
|
@endif
|
2019-10-16 22:12:38 +02:00
|
|
|
@endcomponent
|