mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
31 lines
623 B
PHP
31 lines
623 B
PHP
@component('email.template.master', ['design' => 'light', 'settings' => $settings])
|
|
|
|
@slot('header')
|
|
@component('email.components.header', ['p' => $body, 'logo' => 'https://www.invoiceninja.com/wp-content/uploads/2019/01/InvoiceNinja-Logo-Round-300x300.png'])
|
|
|
|
@if(isset($title))
|
|
{{$title}}
|
|
@endif
|
|
|
|
@endcomponent
|
|
|
|
|
|
@if($footer)
|
|
@component('email.components.button', ['url' => $view_link])
|
|
{{$view_text}}
|
|
@endcomponent
|
|
@endif
|
|
|
|
|
|
@endslot
|
|
|
|
@slot('below_card')
|
|
|
|
@if($signature)
|
|
{{ $signature }}
|
|
@endif
|
|
|
|
@endslot
|
|
|
|
@endcomponent
|