@extends('layouts.master') @section('title', 'Property Promotions - HomesInKerala') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Property Promotions

Promote your listings with featured placement, premium badges, and homepage visibility.

@include('frontend.agent.partials.nav')
@foreach($packages as $package)

{{ $package->type_label }}

{{ $package->name }}

{{ config('payments.currency', 'INR') }} {{ number_format((float) $package->price, 2) }}

{{ $package->duration_days }} days promotion duration.

@csrf
@endforeach

Promotion History

@forelse($promotions as $promotion) @empty @endforelse
Property Package Status Expires Payment
{{ $promotion->property?->title }} {{ $promotion->package?->name }} {{ Str::headline($promotion->status) }} {{ $promotion->expires_at?->format('d M Y') ?: '-' }} @if($promotion->payment) {{ Str::headline($promotion->payment->status) }} @else - @endif
No promotions purchased yet.
{{ $promotions->links() }}
@endsection