Files
CRM/resources/views/vendor/mail/html/message.blade.php
Kroonk a213a1dba0
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
refactor: replace custom CRM with Monica fork
2026-05-22 16:19:55 +02:00

28 lines
532 B
PHP

@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => Str::of(config('app.url'))->ltrim('/')])
{{ config('app.display_name') }}
@endcomponent
@endslot
{{-- Body --}}
{{ $slot }}
{{-- Subcopy --}}
@isset($subcopy)
@slot('subcopy')
@component('mail::subcopy')
{{ $subcopy }}
@endcomponent
@endslot
@endisset
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
© {{ date('Y') }} {{ config('app.display_name') }}. @lang('All rights reserved.')
@endcomponent
@endslot
@endcomponent