@extends('layouts.app') @section('content')

{{ __('System Overview Report') }}

{{ __('Export PDF') }}
{{ __('Report Date') }}: {{ now()->format('Y-m-d') }}
{{ __('Total Users') }}

{{ $stats['total_users'] }}

{{ __('Total Products') }}

{{ $stats['total_products'] }}

{{ __('Total Categories') }}

{{ $stats['total_categories'] }}

{{ __('Total Tables') }}

{{ $stats['total_tables'] }}

{{ __('Total Orders') }}

{{ $stats['total_orders'] }}

{{ __('Total Sales') }}

{{ number_format($stats['total_sales'], 2) }}

{{ __('Orders Today') }}

{{ $stats['orders_today'] }}

{{ __('Sales Today') }}

{{ number_format($stats['sales_today'], 2) }}

{{ __('Monthly Sales Trend (Last 12 Months)') }}
@endsection @section('scripts') @endsection