@php $title = admin_trans('offers_usage_report'); $icon = 'file-text'; $stats = [ ['label' => 'Total Offers', 'value' => number_format($totalOffers), 'icon' => 'tag', 'color' => 'primary'], ['label' => 'Active Offers', 'value' => number_format($activeOffers), 'icon' => 'check-circle', 'color' => 'success'], ['label' => 'Expired Offers', 'value' => number_format($expiredOffers), 'icon' => 'x-circle', 'color' => 'danger'], ['label' => 'Total Views', 'value' => number_format($totalViews), 'icon' => 'eye', 'color' => 'secondary'] ]; @endphp @extends('admin.analytics.base') @section('analytics-content')