@extends('layouts.app', ['title' => 'Payment']) @section('content')
@if(isset($user_subscription['user_payment_history']) && !empty($user_subscription['user_payment_history'])) @foreach($user_subscription['user_payment_history'] as $a_key => $subscription_payment_history) @endforeach @endif @if(!empty($user_addons)) @foreach($user_addons as $b_key => $user_addon) @if(isset($user_addon['user_payment_history']) && !empty($user_addon['user_payment_history'])) @foreach($user_addon['user_payment_history'] as $c_key => $addon_payment_history) @endforeach @endif @endforeach @endif
DESCRIPTION RATE START DATE END DATE DESC AMOUNT
{{ $subscription_payment_history->product_title }} ${{ $subscription_payment_history->product_price }} {{ $subscription_payment_history->getStartDate() }} {{ $subscription_payment_history->getEndDate() }} {{ $subscription_payment_history->description }} ${{ $subscription_payment_history->amount }}
{{ $addon_payment_history->product_title }} ${{ $addon_payment_history->product_price }} {{ $addon_payment_history->getStartDate() }} {{ $addon_payment_history->getEndDate() }} {{ $addon_payment_history->description }} ${{ $addon_payment_history->amount }}