mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
35 lines
622 B
PHP
35 lines
622 B
PHP
@component('mail::layout')
|
|
|
|
{{-- Header --}}
|
|
@slot('header')
|
|
@component('mail::header', ['url' => config('app.url')])
|
|
Header Title
|
|
@endcomponent
|
|
@endslot
|
|
|
|
{{-- Body --}}
|
|
{{ $user }}
|
|
trans('texts.confirmation_message')
|
|
|
|
@component('mail::button', ['url' => url("/user/confirm/{$user->confirmation_code}")])
|
|
trans('texts.confirm')
|
|
@endcomponent
|
|
|
|
{{-- Subcopy --}}
|
|
@isset($subcopy)
|
|
@slot('subcopy')
|
|
@component('mail::subcopy')
|
|
{{ $subcopy }}
|
|
@endcomponent
|
|
@endslot
|
|
@endisset
|
|
|
|
|
|
{{-- Footer --}}
|
|
@slot('footer')
|
|
@component('mail::footer')
|
|
© {{ date('Y') }} {{ config('ninja.app_name') }}.
|
|
@endcomponent
|
|
@endslot
|
|
|
|
@endcomponent |