@extends('layouts.admin', ['heading' => 'Advanced Payments', 'subheading' => 'Crypto, subscriptions, and recurring payments']) @section('content')
| Txn | User | Currency | Amount | Status | Action |
|---|---|---|---|---|---|
| #{{ $txn->id }} {{ $txn->tx_hash ?: '-' }} |
{{ $txn->user_id ?: '-' }} | {{ $txn->currency_code }} | {{ number_format((float) $txn->amount_crypto, 8) }} / {{ number_format((float) $txn->amount_inr, 2) }} | {{ ucfirst($txn->status) }} | |
| No crypto transactions. | |||||
| ID | User | Plan | Status | Start | Next Billing |
|---|---|---|---|---|---|
| {{ $sub->id }} | {{ $sub->user_id }} | {{ $sub->subscription_plan_id }} | {{ ucfirst($sub->status) }} | {{ optional($sub->starts_on)->format('d M Y') }} | {{ optional($sub->next_billing_on)->format('d M Y') ?: '-' }} |
| No subscriptions found. | |||||