@extends('layouts.admin') @section('title', 'Subscription Requests') @section('content')
Review and manage user payment requests.
Total Requests
Pending
Approved
Cancelled
| User | Plan | Method | TRX ID | Screenshot | Status | Date | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $item->user->name ?? 'N/A' }}
{{ $item->user->email ?? 'N/A' }}
|
{{ $item->plan->name ?? 'N/A' }}
{{ $item->plan ? number_format($item->plan->price, 2) : '0.00' }} ৳ · {{ $item->plan->duration_days ?? 0 }} days
|
{{ $item->paymentMethod->name ?? 'N/A' }}
{{ $item->paymentMethod->number ?? 'N/A' }}
|
{{ $item->trx_id }} |
@if($item->payment_screenshot)
|
@if($item->status === 'pending') Pending @elseif($item->status === 'approved') Approved @else Cancelled @endif |
{{ $item->created_at->format('d M, Y') }}
{{ $item->created_at->format('h:i A') }}
|
View
@if($item->status === 'pending')
@endif
|
No subscription requests foundThere are no requests available right now. |
|||||||