2020-03-25 03:50:08 +01:00
|
|
|
@component('email.template.master', ['design' => 'light'])
|
|
|
|
|
|
|
|
@slot('header')
|
|
|
|
@component('email.components.header', ['p' => '', 'logo' => 'https://www.invoiceninja.com/wp-content/uploads/2019/01/InvoiceNinja-Logo-Round-300x300.png'])
|
|
|
|
|
|
|
|
@if(isset($title))
|
|
|
|
{{$title}}
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@endcomponent
|
|
|
|
|
2019-12-10 21:25:54 +01:00
|
|
|
{!! $body !!}
|
2020-03-25 03:50:08 +01:00
|
|
|
|
|
|
|
@slot('footer')
|
|
|
|
|
|
|
|
@if(isset($footer))
|
|
|
|
{!! $footer !!}
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
|
|
|
For any info, please visit InvoiceNinja.
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
|
|
|
|
|
|
|
|
@endcomponent
|