Moved to _dev
This commit is contained in:
34
crater/resources/views/emails/send/payment.blade.php
Normal file
34
crater/resources/views/emails/send/payment.blade.php
Normal file
@@ -0,0 +1,34 @@
|
||||
@component('mail::layout')
|
||||
{{-- Header --}}
|
||||
@slot('header')
|
||||
@component('mail::header', ['url' => ''])
|
||||
@if($data['company']['logo'])
|
||||
<img class="header-logo" src="{{asset($data['company']['logo'])}}" alt="{{$data['company']['name']}}">
|
||||
@else
|
||||
{{$data['company']['name']}}
|
||||
@endif
|
||||
@endcomponent
|
||||
@endslot
|
||||
|
||||
{{-- Body --}}
|
||||
<!-- Body here -->
|
||||
|
||||
{{-- Subcopy --}}
|
||||
@slot('subcopy')
|
||||
@component('mail::subcopy')
|
||||
{!! $data['body'] !!}
|
||||
@if(!$data['attach']['data'])
|
||||
@component('mail::button', ['url' => $data['url']])
|
||||
View Payment
|
||||
@endcomponent
|
||||
@endif
|
||||
@endcomponent
|
||||
@endslot
|
||||
|
||||
{{-- Footer --}}
|
||||
@slot('footer')
|
||||
@component('mail::footer')
|
||||
Powered by <a class="footer-link" href="https://craterapp.com">Crater</a>
|
||||
@endcomponent
|
||||
@endslot
|
||||
@endcomponent
|
||||
Reference in New Issue
Block a user