@extends('layouts.admin') @section('title', 'Expired Subscriptions') @section('content')

Expired Subscriptions

Subscriptions that are no longer active.

@forelse($subscriptions as $item)

{{ $item->user->name ?? 'N/A' }}

{{ $item->user->email ?? 'N/A' }}

Expired
Plan
{{ $item->plan->name ?? 'N/A' }}
Validity
{{ $item->start_date ? $item->start_date->format('d M, Y') : 'N/A' }} - {{ $item->end_date ? $item->end_date->format('d M, Y') : 'N/A' }}
Expired On
{{ $item->end_date ? $item->end_date->format('d M, Y h:i A') : 'N/A' }}
@empty

No expired subscriptions found

@endforelse
@if($subscriptions->hasPages())
{{ $subscriptions->links() }}
@endif
@endsection