@extends('partner.layouts.app') @section('title', 'My Offers') @section('content') @php $offers = [ ['title' => '20% Off Dining', 'discount' => '20%', 'category' => 'Dining', 'validFrom' => 'Jan 01, 2026', 'validUntil' => 'Mar 31, 2026', 'redemptions' => 450, 'status' => 'Active'], ['title' => 'Free Dessert with Meal', 'discount' => 'Free Item', 'category' => 'Dining', 'validFrom' => 'Feb 01, 2026', 'validUntil' => 'Feb 28, 2026', 'redemptions' => 120, 'status' => 'Expiring Soon'], ['title' => 'Happy Hour 1-for-1', 'discount' => '50%', 'category' => 'Beverages', 'validFrom' => 'Jan 01, 2026', 'validUntil' => 'Jun 30, 2026', 'redemptions' => 890, 'status' => 'Active'], ['title' => 'Weekend Brunch Special', 'discount' => '15%', 'category' => 'Dining', 'validFrom' => 'Dec 01, 2025', 'validUntil' => 'Dec 31, 2025', 'redemptions' => 0, 'status' => 'Paused'], ]; @endphp

My Offers

Create and manage your promotional offers.

@foreach($offers as $offer)@endforeach
Offer TitleDiscountValid PeriodRedemptionsStatusActions
{{ $offer['title'] }}
{{ $offer['category'] }}
{{ $offer['discount'] }}
From: {{ $offer['validFrom'] }}
Until: {{ $offer['validUntil'] }}
{{ $offer['redemptions'] }}{{ $offer['status'] }}
@endsection