mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 06:27:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			612 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			612 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @component('email.template.master', ['design' => 'light', 'settings' =>$settings])
 | |
| 
 | |
| @slot('header')
 | |
|     @component('email.components.header', ['p' => $title, 'logo' => $logo])
 | |
|     @endcomponent
 | |
| @endslot
 | |
| 
 | |
| @slot('greeting')
 | |
| 	@lang($message)
 | |
| @endslot
 | |
| 
 | |
| @component('email.components.button', ['url' => $url])
 | |
|     @lang($button)
 | |
| @endcomponent
 | |
| 
 | |
| @slot('signature')
 | |
|     {{ $signature }}
 | |
| @endslot
 | |
| 
 | |
| @slot('footer')
 | |
|     @component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
 | |
|         For any info, please visit InvoiceNinja.
 | |
|     @endcomponent
 | |
| @endslot
 | |
| 
 | |
| @endcomponent |