@extends('layouts.app') @section('title', 'Subscription Details') @section('content')
{{ $subscription->stripe_id }}
| # | Payment Number | Amount | Status | Date |
|---|---|---|---|---|
| {{ $key + 1 }} | {{ $payment->payment_number }} | ${{ number_format($payment->amount, 2) }} | {{ ucfirst($status) }} | {{ $payment->created_at->format('F d, Y h:i A') }} |
No payments found for this user.
@endif