mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:47:32 -04: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 |