@extends('dashboard.app') @section('page_title', 'Admin Subscriptions') @section('page_subtitle', 'Grant, revoke, and audit Pro access.') @section('dashboard_content') @if (session('status'))
| Subscriber | Plan | Status | Next billing | Actions |
|---|---|---|---|---|
|
{{ $row->user?->name ?? '—' }}
{{ $row->user?->email ?? '—' }}
|
{{ $row->plan }} | @php $inactive = in_array($row->status, ['revoked', 'cancelled', 'suspended'], true); $pill = $inactive ? ['bg' => 'bg-rose-100 dark:bg-rose-500/20', 'text' => 'text-rose-800 dark:text-rose-200'] : ($row->status === 'pending' ? ['bg' => 'bg-amber-100 dark:bg-amber-500/20', 'text' => 'text-amber-800 dark:text-amber-200'] : ['bg' => 'bg-emerald-100 dark:bg-emerald-500/20', 'text' => 'text-emerald-800 dark:text-emerald-200']); @endphp {{ $row->status }} | {{ $row->expires_at?->toDateString() ?? '—' }} | View |
| No subscriptions found. | ||||