mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 21:00:58 +00:00
20 lines
526 B
PHP
20 lines
526 B
PHP
@component('mail::layout')
|
|
@slot('header')
|
|
@component('mail::header', ['url' => ''])
|
|
{{ $data['customer']->company->name }}
|
|
@endcomponent
|
|
@endslot
|
|
|
|
@slot('subcopy')
|
|
@component('mail::subcopy')
|
|
{!! $data['body'] !!}
|
|
@endcomponent
|
|
@endslot
|
|
|
|
@slot('footer')
|
|
@component('mail::footer')
|
|
Powered by <a class="footer-link" href="https://invoiceshelf.com" target="_blank">InvoiceShelf</a>
|
|
@endcomponent
|
|
@endslot
|
|
@endcomponent
|