@extends('partner.layouts.app') @section('title', 'Partner Dashboard') @section('content') @php $stats = [ ['label' => 'Total Redemptions', 'value' => '1,247', 'sub' => '+156 this month', 'trend' => 'up'], ['label' => 'Active Offers', 'value' => '8', 'sub' => '2 expiring soon', 'trend' => 'warning'], ['label' => 'Member Reach', 'value' => '45,230', 'sub' => 'Potential customers', 'trend' => 'neutral'], ['label' => 'Est. Revenue Impact', 'value' => 'Rs. 2.4M', 'sub' => 'From member visits', 'trend' => 'up'], ]; $chartBars = [35, 45, 55, 75, 62, 50]; $chartMonths = ['Sep', 'Oct', 'Nov', 'Dec', 'Jan', 'Feb']; @endphp

Partner Dashboard

Manage your offers and track performance.

@foreach($stats as $stat)

{{ $stat['label'] }}

{{ $stat['value'] }}

@if ($stat['trend'] === 'up'){{ $stat['sub'] }} @elseif ($stat['trend'] === 'warning'){{ $stat['sub'] }} @else{{ $stat['sub'] }}@endif
@endforeach

Redemption Trends

Last 6 Months
@foreach ($chartBars as $idx => $height)

{{ $chartMonths[$idx] }}

@endforeach

Avg. Discount Given

Rs. 850

Peak Redemption Day

Friday

6:00 PM - 9:00 PM

Top Performing Offer

20% Off Dining

450 redemptions

@endsection