mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
74a6c4f2ee
* Performance improvements moving from str_replace to strtr * Remove legacy docs * Clean up credit transformer * Working on invoice emails * Clean up for invoice designs * Tests for light and dark theme emails * Working on reminder scheduling * Reminder Job Class * Fixes for github actions * PHP CS * Test for reminders * Test for reminders
24 lines
503 B
PHP
24 lines
503 B
PHP
@component('email.template.master', ['design' => 'light'])
|
|
|
|
@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
|
|
|
|
|
|
@endcomponent
|