@component('mail::message')
{{-- Greeting --}}
# {{$greeting}}
{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
{{-- Action Button --}}
@isset($actionText)
@component('mail::button', ['url' => $actionUrl, 'color' => $color])
{{ $actionText }}
@endcomponent
@endisset
@if (!empty($planTable))
{{ $planTable['title'] }}
@component('mail::table')
| {{ $planTable['head']['plan_name'] }} | {{ $planTable['head']['plan_interval'] }} | {{ $planTable['head']['plan_price'] }} |
| ------------------|:---------:|-------------:|
| {{ $planTable['body']['plan_name'] }} | {{ $planTable['body']['plan_interval'] }} | {{ $planTable['body']['plan_price'] }} |
@endcomponent
@endif
{{-- Outro Lines --}}
@foreach ($outroLines as $line)
{{ $line }}
@endforeach
{{-- Salutation --}}
{{ $salutation }},
{{ $settings['website_name'] }}
{{-- Subcopy --}}
@isset($actionText)
@slot('subcopy')
{{ $subcopy }}
[{{ $displayableActionUrl }}]({{ $actionUrl }})
@endslot
@endisset
@endcomponent