{{-- filepath: resources/views/admin/subscriptions/detail.blade.php --}} @extends('admin.layout.app') @section('title', 'Subscription Request Detail') @section('content')
Request from {{ $subscription->user->name }}
User Info
  • Name: {{ $subscription->user->name }}
  • Email: {{ $subscription->user->email }}
  • Phone: {{ $subscription->user->phone ?? '-' }}
Plan Info
  • Plan: {{ $subscription->plan->duration }} months
  • Price: {{ number_format($subscription->plan->price) }}
  • Start Date: {{ $subscription->start_date }}
  • End Date: {{ $subscription->end_date }}
  • Status: @if (!$subscription->accepted) Pending @elseif($subscription->is_active) Active @else Inactive @endif
@if (!$subscription->accepted)
@csrf
@endif
Payment Screenshot
@if ($subscription->payment_screenshot) Payment Screenshot @else
No payment screenshot uploaded.
@endif @if ($subscription->paymentService)

Transferred Admin's Payment Account

Account : {{ $subscription->paymentService->account_name }}
Phone : {{ $subscription->paymentService->phone_number }}
@endif
@endsection