@extends('emails.layouts.base') @section('content')

{{ __('Welcome to :planName!', ['planName' => $planName]) }}

{{ __('Your subscription has been activated successfully. You now have access to all the features included in your plan.') }}

@include('emails.partials.details-box', [ 'title' => __('Subscription Details'), 'details' => [ __('Plan') => $planName, __('Amount') => $amount, __('Next Billing Date') => $nextBillingDate ], 'primaryColor' => $primaryColor ])

{{ __('Thank you for your subscription!') }}

@endsection