@component('mail::message')
Dear {{ $data['name'] }},
{{ __('Thanks for useing ') }} {{ $data['plan_name'] }}.
{{ __('Your subscription will ending soon the last due date is ') }} {{ $data['will_expire'] }}.
{{ __('Please renew your subscription') }}
@component('mail::table')
| {{ __('Description') }} | {{ __('Amount') }} |
| :---------------------- | :------------------ |
@foreach ($data['contents'] ?? [] as $key => $content)
| {{$key}} | {{$content}} |
@endforeach
@endcomponent
@component('mail::button', ['url' => url($data['link']) ])
{{ __('Renew Subscription Now') }}
@endcomponent
Thanks,
{{ config('app.name') }}
@endcomponent