mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:07:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			417 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			417 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@component('email.template.admin', ['settings' => $settings, 'logo' => $logo])
 | 
						|
    <div class="center">
 | 
						|
        <h1>{{ $title }}</h1>
 | 
						|
 | 
						|
        {{ ctrans("texts.{$body}") }}
 | 
						|
 | 
						|
        @isset($view_link)
 | 
						|
            <a class="button" href="{{ $view_link}}" target="_blank">{{{ $view_text }}}</a>
 | 
						|
        @endisset
 | 
						|
 | 
						|
        @isset($signature)
 | 
						|
            <p>{{ $signature }}</p>
 | 
						|
        @endisset
 | 
						|
    </div>
 | 
						|
@endcomponent |