@extends('layouts.admin') @section('title', trans_key('admin.dashboardPage.title')) @section('header', trans_key('admin.dashboardPage.title')) @php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', html_entity_decode('₹', ENT_QUOTES, 'UTF-8')); $currencyDecimals = App\Models\AppSetting::currencyDecimals(); $avgOrderValue = $totalOrders > 0 ? $totalRevenue / max($deliveredOrdersCount, 1) : 0; $activityOrders = $recentOrders->take(4); $platformHealth = $successRate >= 80 ? trans_key('admin.dashboardPage.operational') : trans_key('admin.dashboardPage.watch'); @endphp @section('styles') @endsection @section('content')
{{ trans_key('admin.dashboardPage.intro') }}