@extends('backend::layouts.app') @section('content')
| 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 |
| Charge ID: | Amount Due: | Status: | Created: |
|---|---|---|---|
| {{ $charge->id }} | {{ $charge->amount / 100 }} | {{ $charge->status }} | {{ app_datetime($charge->created) }} |
| Action | Description |
|---|---|
| Cancel subscription |
|
| Send Stripe Payment Link |
|