b2in/resources/views/vendor/mail/html/message.blade.php
2026-01-23 17:33:10 +01:00

36 lines
747 B
PHP

@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
{{ config('app.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.name') }}. {{ __('Alle Rechte vorbehalten.') }}
[{{ parse_url(config('app.url'), PHP_URL_HOST) }}]({{ config('app.url') }})
@endcomponent
@endslot
{{-- Theme CSS --}}
@slot('head')
<style type="text/css">
{!! file_get_contents(resource_path('views/vendor/mail/html/themes/b2in.css')) !!}
</style>
@endslot
@endcomponent