@extends('layouts.app') @section('title', 'Subscriptions') @section('page-title', 'Subscriptions') @section('content')
| Hotel | Plan | Type | Duration | Amount | Start | Expires | Status | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ $sub->hotel->name }}
{{ $sub->hotel->city }}, {{ $sub->hotel->state }}
|
{{ $sub->plan->name ?? '—' }} | @if($sub->type==='manual') Manual @else Online @endif | {{ ucfirst($sub->duration) }} | ₦{{ number_format($sub->amount_paid, 0) }} | {{ $sub->start_date->format('d M Y') }} | @if($sub->duration === 'lifetime') Lifetime @elseif($sub->end_date) {{ $sub->end_date->format('d M Y') }} @if($sub->end_date->isPast()) Expired @elseif($sub->end_date->diffInDays(now()) <= 7) Expiring soon @endif @else — @endif | @if($sub->status==='active') Active @elseif($sub->status==='expired') Expired @elseif($sub->status==='suspended') Suspended @else {{ ucfirst($sub->status) }} @endif | |
No subscriptions found | ||||||||