mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 18:07:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			469 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			469 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @component('email.template.master', ['design' => 'light', 'settings' => $settings, 'whitelabel' => $whitelabel])
 | |
| 
 | |
| @slot('header')
 | |
|     @include('email.components.header', ['logo' => $company->present()->logo($settings)])
 | |
| @endslot
 | |
| 
 | |
| {!! $body !!}
 | |
| 
 | |
| @if($signature)
 | |
| <br>
 | |
| <br>
 | |
| <p>
 | |
|     {!! $signature !!}
 | |
| </p>
 | |
| @endif
 | |
| 
 | |
| @isset($email_preferences)
 | |
| <p>
 | |
|     <a href="{{ $email_preferences }}">
 | |
|         {{ ctrans('texts.email_preferences') }}
 | |
|     </a>
 | |
| </p>
 | |
| @endisset
 | |
| 
 | |
| @endcomponent
 |