@extends('layouts.app') @section('title', 'Dashboard') @section('page-title', 'Overview Dashboard') @push('styles') @endpush @section('content')

Selamat Datang, {{ auth()->user()->name }}! 👋

{{ now()->translatedFormat('l, d F Y') }}

Total Invoice
{{ $stats['total_invoices'] }}
Lunas
{{ $stats['invoice_paid'] }}
Belum Lunas
{{ $stats['invoice_unpaid'] }}
Bulan Ini
Rp {{ number_format($stats['revenue_month'], 0, ',', '.') }}

Invoice Terbaru

Lihat Semua
@forelse($recent_invoices as $inv) @empty @endforelse
NO. INVOICE PELANGGAN TANGGAL TOTAL STATUS
{{ $inv->invoice_number }} {{ $inv->customer->name }} {{ $inv->invoice_date->format('d M Y') }} Rp {{ number_format($inv->total, 0, ',', '.') }} {{ $inv->status_label }}
Belum ada invoice masuk
@endsection