@extends('admin.layouts.app') @section('title', 'Enhanced Dashboard') @section('breadcrumb')
@endsection @section('page-header'){{ __('Welcome back') }}, {{ Auth::guard('admin')->user()->name }}! 👋
{{ __('Total Revenue (SAR)') }}
{{ __('Today') }}: {{ number_format($stats['today_revenue'] ?? 0, 2) }} SAR{{ __('Total Orders') }}
{{ __('Pending') }}: {{ $stats['pending_orders'] ?? 0 }} | {{ __('Today') }}: {{ $stats['today_orders'] ?? 0 }}{{ __('Total Products') }}
{{ $stats['active_products'] ?? 0 }} {{ __('active') }} | {{ $stats['inactive_products'] ?? 0 }} {{ __('inactive') }}{{ __('Total Customers') }}
{{ __('Categories') }}: {{ $stats['total_categories'] ?? 0 }}{{ __('Conversion Rate') }}
{{ __('Avg Order Value (SAR)') }}
{{ __('Repeat Customers') }}
{{ __('Low Stock Items') }}
{{ __('No sales data available') }}
{{ __('Order') }} | {{ __('Customer') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Date') }} |
---|---|---|---|---|
{{ $order->order_number }} | {{ $order->customer_name }} | {{ number_format($order->total_amount, 2) }} SAR | {{ ucfirst($order->status) }} | {{ $order->created_at->diffForHumans() }} |
{{ __('No recent orders') }}