Payment Schedule
Check when will be your next payment.
@if($activeSub)
{{ $activeSub->plan->price }} {{\App\Models\Setting::get('currency_sign')}}
Change Plan
{{ $activeSub->plan->title }} Plan
@if( $activeSub->plan->cancel_at)
Cancel at: {{ date('d M Y', $activeSub->plan->cancel_at) }}
@else
@if($activeSub->current_period_end)
Next payment: {{ date('d M Y', $activeSub->current_period_end) }}
@endif
@endif
{{ $currentPlan->price }} {{\App\Models\Setting::get('currency_sign')}}
Change Plan
{{ $currentPlan->title }} Plan
Payment Method
Change the way how you pay for the plan.
@if($defMethod)
@php
$card_data = $defMethod->data??[];
@endphp
Set Method
@endif
@if($card_data['card']['brand']??0 && $card_data['card']['brand'] == 'visa')
Update Method
@else
@php include(public_path('dash/img/visa-logo.svg')) @endphp
@endif
{{ ucfirst($card_data['card']['brand']??'') }} card
Expiry {{ $card_data['card']['exp_month']??'' }}/{{ $card_data['card']['exp_year']??'' }}
Billing History
You can find the recipes of all your transactions here.
@if($charges)Date | Description | Invoice Total | Status | {{--Action | --}}
---|---|---|---|---|
{{ $charge->created }} | {{ $charge->description }} | {{ $charge->amount }} | @if($charge->status == 'succeeded') @php include(public_path('dash/img/icon-check-streamline-core.svg')) @endphp Paid @else {{ $charge->status }} @endif | {{--@if($charge->receipt_url) @php include(public_path('dash/img/icon-download.svg')) @endphp Download @endif | --}}
- ...