mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
15 lines
417 B
PHP
15 lines
417 B
PHP
@component('email.template.admin', ['settings' => $settings, 'logo' => $logo])
|
|
<div class="center">
|
|
<h1>{{ $title }}</h1>
|
|
|
|
{{ ctrans("texts.{$body}") }}
|
|
|
|
@isset($view_link)
|
|
<a class="button" href="{{ $view_link}}" target="_blank">{{{ $view_text }}}</a>
|
|
@endisset
|
|
|
|
@isset($signature)
|
|
<p>{{ $signature }}</p>
|
|
@endisset
|
|
</div>
|
|
@endcomponent |