@extends('layouts.app')
@section('title', 'Choose Your Plan')
@section('content')
Choose the Plan That Works for You
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@foreach($plans as $plan)
{{ $plan->name }}
{{ $plan->description }}
₦{{ number_format($plan->price / 100, 2) }}
- 📌 Properties allowed: {{ $plan->listing_limit ?? 'Unlimited' }}
- ⭐ Featured Support: {{ $plan->can_feature ? 'Yes' : 'No' }}
- ✅ Verified Badge: {{ $plan->is_verified ? 'Included' : 'No' }}
- 💬 WhatsApp Leads: {{ $plan->whatsapp_leads ? 'Enabled' : 'No' }}
- 🎥 Video Tour Upload: {{ $plan->can_upload_video ? 'Yes' : 'No' }}
@if(auth()->check())
@else
Login to Subscribe
@endif
@endforeach
@endsection