@extends('client.layouts.main') @section('title', 'Dashboard') @section('content')
{{ $stats['active_domains'] ?? 0 }}
Active Domains
View more
{{ $stats['active_hosting'] ?? 0 }}
Active Hosting
View more
{{ $stats['unpaid_invoices'] ?? 0 }}
Unpaid Invoices
View more
{{ $stats['active_services'] ?? 0 }}
Active Services
View more
Upcoming Renewals
@forelse($upcoming_renewals ?? [] as $renewal) @empty @endforelse
Service Due Date Amount
{{ $renewal['name'] }} {{ $renewal['due_date'] }} {{ $renewal['amount'] }}
No upcoming renewals
Recent Invoices
@forelse($recent_invoices ?? [] as $invoice) @empty @endforelse
Invoice # Amount Status Due
{{ $invoice->invoice_number }} {{ number_format($invoice->total, 2) }} {{ ucfirst($invoice->status) }} {{ $invoice->due_date->format('M d, Y') }}
No recent invoices
@endsection