{{-- @component('mail::message')
# Hello Admin,
You have received new payment for {{ $userPlan->plan->name }} from {{ $userPlan->user->name }},
@component('mail::button', ['url' => route('admin.transaction.invoice.view',$userPlan->transaction->id) ])
View Invoice
@endcomponent
Thanks,
{{ config('app.name') }}
@endcomponent --}}
@component('mail::message')
# Hello Admin,
You have received new payment for {{ $userPlan->plan->name }} from {{ $userPlan->user->name }},
@php
$actionURL = route('user.transaction.invoice.view',$userPlan->transaction->id);
@endphp
@component('mail::button', ['url' => route('admin.transaction.invoice.view',$userPlan->transaction->id) ])
View Transaction
@endcomponent
Thanks,
{{ config('app.name') }}
@endcomponent