2020-09-19 07:02:34 +02:00
|
|
|
@component('email.template.master', ['design' => 'light', 'settings' =>$settings])
|
2020-02-17 10:37:44 +01:00
|
|
|
|
|
|
|
@slot('header')
|
2021-05-14 05:32:37 +02:00
|
|
|
@component('email.components.header', ['p' => '', 'logo' => $logo])
|
2020-02-27 07:29:40 +01:00
|
|
|
@lang('texts.download')
|
2020-02-24 11:15:30 +01:00
|
|
|
@endcomponent
|
2020-02-27 07:29:40 +01:00
|
|
|
|
2020-02-17 10:37:44 +01:00
|
|
|
@endslot
|
|
|
|
|
|
|
|
|
2021-05-15 05:31:41 +02:00
|
|
|
@if(isset($greeting))
|
|
|
|
<p style="padding-top:20px">{{ $greeting }}</p>
|
|
|
|
@endif
|
2020-02-24 11:15:30 +01:00
|
|
|
|
2021-05-15 05:31:41 +02:00
|
|
|
<p style="padding-top:20px">
|
|
|
|
@lang('texts.download_timeframe')
|
|
|
|
</p>
|
2021-05-14 05:32:37 +02:00
|
|
|
|
2021-05-15 05:31:41 +02:00
|
|
|
<p style="padding-top:20px">
|
2021-05-14 05:32:37 +02:00
|
|
|
@component('email.components.button', ['url' => $url])
|
|
|
|
@lang('texts.download')
|
|
|
|
@endcomponent
|
2021-05-15 05:31:41 +02:00
|
|
|
</p>
|
2021-05-14 05:32:37 +02:00
|
|
|
|
2020-02-24 11:15:30 +01:00
|
|
|
@slot('signature')
|
2020-02-27 07:29:40 +01:00
|
|
|
InvoiceNinja (contact@invoiceninja.com)
|
2020-02-17 10:37:44 +01:00
|
|
|
@endslot
|
|
|
|
|
2021-02-02 06:11:33 +01:00
|
|
|
@if(!$whitelabel)
|
|
|
|
@slot('footer')
|
|
|
|
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
|
|
|
For any info, please visit InvoiceNinja.
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
@endif
|
2020-02-24 11:15:30 +01:00
|
|
|
@endcomponent
|