@extends('admin.layouts.app')
@section('title', 'Promotions')
@section('breadcrumb')
Marketing
Promotions
@endsection
@section('heading', 'Promotions')
@section('subheading', 'Manage agent promotion packages and subscriptions.')
@section('content')
{{-- Add Form --}}
{{-- Table --}}
| Package Name |
Price |
Duration |
Features |
Active Subscribers |
Revenue |
Status |
Actions |
@foreach ([
['name' => 'Basic', 'price' => '₹2,999', 'duration' => '7 days', 'features' => '5 featured listings, Basic support, Email notifications', 'subscribers' => 142, 'revenue' => '₹4.26 L', 'status' => 'Active'],
['name' => 'Silver', 'price' => '₹5,999', 'duration' => '15 days', 'features' => '15 featured listings, Priority support, WhatsApp alerts, Analytics', 'subscribers' => 89, 'revenue' => '₹5.34 L', 'status' => 'Active'],
['name' => 'Gold', 'price' => '₹9,999', 'duration' => '30 days', 'features' => '30 featured listings, Dedicated support, Homepage placement, Full analytics', 'subscribers' => 56, 'revenue' => '₹5.60 L', 'status' => 'Active'],
['name' => 'Platinum', 'price' => '₹19,999', 'duration' => '60 days', 'features' => 'Unlimited featured, 24/7 support, Hero banner, CRM integration', 'subscribers' => 28, 'revenue' => '₹5.60 L', 'status' => 'Active'],
['name' => 'Enterprise', 'price' => '₹49,999', 'duration' => '90 days', 'features' => 'Agency-wide access, API access, Custom branding, Dedicated manager', 'subscribers' => 12, 'revenue' => '₹6.00 L', 'status' => 'Active'],
['name' => 'Starter', 'price' => '₹999', 'duration' => '7 days', 'features' => '2 featured listings, Email support', 'subscribers' => 234, 'revenue' => '₹2.34 L', 'status' => 'Active'],
] as $row)
| {{ $row['name'] }} |
{{ $row['price'] }} |
{{ $row['duration'] }} |
{{ Str::limit($row['features'], 50) }} |
{{ $row['subscribers'] }} |
{{ $row['revenue'] }} |
{{ $row['status'] }}
|
|
@endforeach
Showing 1 to 6 of 6 results
@endsection