mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
4c23d43138
* Refactor designs to remove whitespace * enable dummy data for templating * Insert faker data into templates * Fixes for user deletion * Documentation on User controller: * Working on app setup * Files for app setup * Working on Setup * Final fixes for setup controller * Fixes for setup * Fixes for first install * Minor fixes
41 lines
729 B
PHP
41 lines
729 B
PHP
@component('mail::layout')
|
|
|
|
{{-- Header --}}
|
|
@slot('header')
|
|
@component('mail::header', ['url' => config('app.url')])
|
|
Header Title
|
|
@endcomponent
|
|
@endslot
|
|
|
|
{{-- Body --}}
|
|
{{ $message }}
|
|
|
|
{!! str_replace('\n', '<br>', $system_info) !!}
|
|
|
|
@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
|
|
{{-- Subcopy --}}
|
|
@isset($subcopy)
|
|
@slot('subcopy')
|
|
@component('mail::subcopy')
|
|
{{ $subcopy }}
|
|
@endcomponent
|
|
@endslot
|
|
@endisset
|
|
|
|
|
|
{{-- Footer --}}
|
|
@slot('footer')
|
|
@component('mail::footer')
|
|
© {{ date('Y') }} {{ config('ninja.app_name') }}.
|
|
@endcomponent
|
|
@endslot
|
|
|
|
@endcomponent
|