@extends('layouts.admin') @section('title', 'Analytics Dashboard') @section('content')
System-wide performance and insights
| Offer | Redemptions | Business |
|---|---|---|
| {{ Str::limit($offer->title, 20) }} | {{ $offer->redemptions_count }} | {{ $offer->business->business_name ?? 'N/A' }} |
| No data | ||
| Business | Redemptions | Rating |
|---|---|---|
| {{ Str::limit($business->business_name, 20) }} | {{ $business->redemptions_count }} | @php $rating = $business->reviews_avg_rating ?? 0; @endphp {{ number_format($rating, 1) }}/5 |
| No data | ||