@extends('layouts.admin') @section('title', 'Admin Dashboard') @section('breadcrumb')
Total Revenue
| User | Plan | Amount | Due Date | Status |
|---|---|---|---|---|
| {{ $installment->subscription->user->name ?? 'N/A' }} | {{ $installment->subscription->membershipPlan->name ?? 'N/A' }} | {{ \App\Models\SiteSetting::getValue('currency_symbol', 'TK') }} {{ number_format($installment->amount, 2) }} | {{ $installment->due_date->format('d M Y') }} @if($installment->due_date->isPast()) Overdue @endif | {{ ucfirst($installment->status) }} |
| No pending installments. | ||||
| User | Plan | Amount | Paid Date | Status |
|---|---|---|---|---|
| {{ $installment->subscription->user->name ?? 'N/A' }} | {{ $installment->subscription->membershipPlan->name ?? 'N/A' }} | {{ \App\Models\SiteSetting::getValue('currency_symbol', 'TK') }} {{ number_format($installment->amount, 2) }} | {{ $installment->paid_at ? $installment->paid_at->format('d M Y') : '-' }} | Paid |
| No paid installments yet. | ||||
| Product Name | Current Stock | Price | Action |
|---|---|---|---|
| {{ $product->name }} | {{ $product->stock }} | {{ \App\Models\SiteSetting::getValue('currency_symbol', 'TK') }} {{ number_format($product->price, 2) }} | Restock |