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

Your Membership

Account Overview

@forelse($subscriptionPlans as $subscriptionPlan) @php $plan = $subscriptionPlan->plan; @endphp @if(!blank($plan)) @endif @empty @endforelse
Status Subscription Expiration Actions
{{ $subscriptionPlan->status == 1 ? 'Active' :'Inactive' }} {{$plan->name}} {{__date_parse($subscriptionPlan->ends_at , 'M d, Y')}} Upgrade / Change
Active Free None Upgrade / Change

Payment History

@forelse($subscriptionPlans as $subscriptionPlan) @if($subscriptionPlan->status == '1') @php $plan = $subscriptionPlan->plan; @endphp @if(!blank($plan)) @endif @endif @empty @endforelse
Invoice # Subscription Amount Date Actions
Invoice # {{$plan->name}} {{__format_number($plan->price , 2)}} {{__date_parse($subscriptionPlan->ends_at , 'M d, Y')}}
You have not made any payments.
@endsection