mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 03:57:29 -04:00 
			
		
		
		
	* Request Cancellation * Add fields to settings * Recurring invoice cancellation request * Stub Template controller
		
			
				
	
	
		
			31 lines
		
	
	
		
			465 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			465 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @component('mail::layout')
 | |
| 
 | |
| {{-- Header --}}
 | |
| @slot('header')
 | |
| @component('mail::header', ['url' => config('app.url')])
 | |
| Header Title
 | |
| @endcomponent
 | |
| @endslot
 | |
| 
 | |
| {{-- Body --}}
 | |
| {{ $message }}
 | |
| 
 | |
| {{-- 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
 |