osb/resources/views/vendor/mail/html/message.blade.php

29 lines
545 B
PHP
Raw Normal View History

2018-08-07 04:26:33 +00:00
@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header',['site'=>$site,'subheading'=>$subheading ?? NULL])
{{ $heading }}
@endcomponent
@endslot
2018-08-07 04:26:33 +00:00
{{-- Body --}}
{{ $slot }}
2018-08-07 04:26:33 +00:00
{{-- Sub Content --}}
@isset($subcontent)
@slot('subcontent')
@component('mail::subcontent')
{{ $subcontent }}
@endcomponent
@endslot
@endisset
2018-08-07 04:26:33 +00:00
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
{{ config('mail.from.name') }}<br>
2024-07-07 05:14:55 +00:00
{!! $site->address->join('<br>') !!}<br>
{{ $site->site_email }}
@endcomponent
@endslot
@endcomponent