@extends('admin.layouts.dashboard') @section('title', 'Partners') @section('content') @php $partners = [ ['name' => 'Hilton Colombo', 'category' => 'Dining', 'contact' => '011-2492492', 'status' => 'Active', 'offers' => 3], ['name' => 'Odel', 'category' => 'Shopping', 'contact' => '011-4625800', 'status' => 'Active', 'offers' => 5], ['name' => 'Laugfs Supermarkets', 'category' => 'Groceries', 'contact' => '011-5555555', 'status' => 'Inactive', 'offers' => 0], ]; $applications = [ ['name' => 'Cinnamon Grand', 'category' => 'Hospitality', 'date' => 'Feb 20, 2026', 'status' => 'Pending'], ['name' => 'Fashion Bug', 'category' => 'Retail', 'date' => 'Feb 19, 2026', 'status' => 'Under Review'], ]; @endphp
Manage partner businesses and applications.
| Business Name | Category | Contact | Active Offers | Status | Actions |
|---|---|---|---|---|---|
| {{ $partner['name'] }} | {{ $partner['category'] }} | {{ $partner['contact'] }} | {{ $partner['offers'] }} | {{ $partner['status'] }} |
| Business | Category | Date | Status | Actions |
|---|---|---|---|---|
| {{ $app['name'] }} | {{ $app['category'] }} | {{ $app['date'] }} | {{ $app['status'] }} |