@extends('layouts.master') @section('title') {{__('admin.dashboard')}} -@endsection @section('css') @endsection @section('content')

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 or change your subscription
Active Free none Upgrade or change your subscription

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 @section('javascript') @endsection