@extends('backend::layouts.app') @section('content')
Subscription show
Invoices
@foreach($invoices->data as $invoice) @endforeach
Invoice ID: Amount Due: Status: Created: Period Start: Period End: Actions
{{ $invoice->id }} {{ $invoice->amount_due / 100 }} {{ $invoice->status }} {{ app_datetime($invoice->created) }} {{ app_date($invoice->period_start) }} {{ app_date($invoice->period_end) }} Download Invoice - PDF
Charges
@foreach($charges->data as $charge) @endforeach
Charge ID: Amount Due: Status: Created:
{{ $charge->id }} {{ $charge->amount / 100 }} {{ $charge->status }} {{ app_datetime($charge->created) }}
Actions
Action Description
Cancel subscription
  • (under development)
  • The user will no longer have access to the associated services or products after the current billing period ends.
  • The user may still receive notifications regarding their subscription status, and there may be options for renewing or re-subscribing in the future.
  • The user will have access to all the resource until the end of subscription
  • Additionally, depending on the cancellation policy, the user might lose any remaining benefits or credits associated with that subscription.
Send Stripe Payment Link
  • (under development)
  • The user will will receives an email with the payment link for the current subscription
@endsection