@component('mail::message') # Card Updated {{--Hello {{ $user->first_name }},--}} @extends('beautymail::templates.sunny') @section('content') @include ('beautymail::templates.sunny.heading' , [ 'heading' => __('Payment Updated'), 'level' => 'h2', ]) @include('beautymail::templates.sunny.contentStart')

{{ __('Hello ') }} {{ ucfirst($user->name) }}
{{ __('Your payment details have been updated.') }}

{{ __('You can login into your account and change the card anytime.') }}

{{ __('Thanks') }},
{{ config('app.name') }}

@include('beautymail::templates.sunny.contentEnd') @include('beautymail::templates.sunny.button', [ 'title' => __('View my account'), 'link' => url('login') ]) @stop