Hi {{ $info->user->name ?? '' }},
{!! $comment ?? '' !!}
Order No: {{ $info->order_no }}
|
|
Purchased Date
|
{{ $info->created_at->format('Y-m-d') }}
|
Expiry Date
|
{{ $info->will_expire }}
|
Order Status
|
@if($info->status==1) Approved @elseif($info->status==2) Pending @else Declined @endif
|
Payment Status
|
@if($info->payment_status==1) Approved
@elseif($info->payment_status==2)
Pending
@else
Declined
@endif
|
|
Description
|
Amount
|
| {{ $info->plan_info->name }} |
{{ number_format($info->amount,2) }} |
| Tax |
{{ number_format($info->tax,2) }} |
|
Cheers,
{{ env('APP_NAME') }}
|