@extends('layouts.admin') @section('title', 'Dashboard') @section('content')
{{-- Header --}}

Admin Dashboard

Revenue

৳ {{ number_format($totalRevenue, 2) }}

Expense

৳ {{ number_format($totalExpenses, 2) }}

Profit

৳ {{ number_format($profit, 2) }}

{{-- Section Title --}}

Dashboard Overview

{{-- Stats Grid --}}
{{-- Revenue --}}
💰
Revenue

Total Revenue

৳ {{ number_format($totalRevenue, 2) }}

সাবস্ক্রিপশন থেকে মোট আয়

{{-- Expenses --}}
💸
Expense

Total Expenses

৳ {{ number_format($totalExpenses, 2) }}

অ্যাডমিন খরচের মোট পরিমাণ

{{-- Profit --}}
📈
{{ $profit >= 0 ? 'Profit' : 'Loss' }}

Net Result

৳ {{ number_format($profit, 2) }}

Revenue - Expenses

{{-- Active Subscribers --}}
Subscribers

Active Subscribers

{{ $activeSubscribers }}

বর্তমানে সক্রিয় সাবস্ক্রাইবার

{{-- Total Users --}}
👤
Users

Total Users

{{ $totalUsers }}

সিস্টেমে মোট নিবন্ধিত ইউজার

{{-- Bottom Summary Cards --}}

Financial Summary

Total Revenue ৳ {{ number_format($totalRevenue, 2) }}
Total Expenses ৳ {{ number_format($totalExpenses, 2) }}
Net {{ $profit >= 0 ? 'Profit' : 'Loss' }} ৳ {{ number_format($profit, 2) }}

User Summary

Active Subscribers {{ $activeSubscribers }}
Total Users {{ $totalUsers }}
Conversion View {{ $totalUsers > 0 ? number_format(($activeSubscribers / $totalUsers) * 100, 2) : '0.00' }}%
@endsection