@extends('nexfloit.layouts.app') @section('title', 'Subscriptions') @section('content')
Manage monthly subscription billing
Total Expected
Paid
Pending
Locked
| Tenant | Billing Month | Amount | Due Date | Status | Paid At | Actions |
|---|---|---|---|---|---|---|
|
{{ $subscription->tenant->business_name }}
{{ $subscription->tenant->code }} |
{{ $subscription->billing_month_display }} | Rs. {{ number_format($subscription->amount, 2) }} | @if($subscription->isOverdue() && $subscription->status !== 'paid') {{ $subscription->due_date->format('M d, Y') }} @else {{ $subscription->due_date->format('M d, Y') }} @endif | {{ $subscription->status_badge['label'] }} | @if($subscription->paid_at) {{ $subscription->paid_at->format('M d, Y') }} @else - @endif | @if($subscription->status !== 'paid') Record Payment @else @endif |
|
No subscriptions found for this period |
||||||