mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:07:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			779 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			779 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @component('email.template.master', ['design' => 'light', 'settings' =>$settings])
 | |
| 
 | |
| @slot('header')
 | |
|     @component('email.components.header')
 | |
|         Migration already completed
 | |
|     @endcomponent
 | |
| @endslot
 | |
| 
 | |
| @slot('greeting')
 | |
| 	Hello,
 | |
| @endslot
 | |
| 
 | |
| Looks like you already migrated your data to V2 version of the Invoice Ninja. In case you want to start over, you can 'force' migrate to wipe existing data.
 | |
| 
 | |
| @component('email.components.button', ['url' => url('/')])
 | |
|     Visit portal
 | |
| @endcomponent
 | |
| 
 | |
| 
 | |
| @slot('signature')
 | |
| Thank you, <br>
 | |
| Invoice Ninja    
 | |
| @endslot
 | |
| 
 | |
| @slot('footer')
 | |
|     @component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
 | |
|         For any info, please visit InvoiceNinja.
 | |
|     @endcomponent
 | |
| @endslot
 | |
| 
 | |
| @endcomponent |