@extends('member.layouts.app') @section('title', 'Savings History') @section('content') @php $hasMembership = request()->boolean('membership', true); $history = [ ['date' => 'Feb 18, 2026', 'time' => '14:30', 'partner' => 'Keells Super', 'category' => 'Groceries', 'discount' => '10%', 'saved' => 'Rs. 450', 'total' => 'Rs. 4,500', 'status' => 'Verified'], ['date' => 'Feb 15, 2026', 'time' => '18:15', 'partner' => 'Odel', 'category' => 'Shopping', 'discount' => '15%', 'saved' => 'Rs. 1,200', 'total' => 'Rs. 8,000', 'status' => 'Verified'], ['date' => 'Feb 12, 2026', 'time' => '20:00', 'partner' => 'Pizza Hut', 'category' => 'Dining', 'discount' => 'Buy 1 Get 1', 'saved' => 'Rs. 850', 'total' => 'Rs. 1,700', 'status' => 'Pending'], ]; @endphp @if(!$hasMembership)
Upgrade to a premium membership to start saving at over 500+ locations and track your history here.
Track your savings and redemption history.
| Date & Time | Partner | Category | Discount | Total Bill | Saved | Status |
|---|---|---|---|---|---|---|
{{ $item['date'] }} {{ $item['time'] }} | {{ $item['partner'] }} | {{ $item['category'] }} | {{ $item['discount'] }} | {{ $item['total'] }} | {{ $item['saved'] }} | {{ $item['status'] }} |