@extends('layouts.dashboard') @section('title', 'Buy Plan - Himrishtey') @section('styles') @endsection @section('content')
@php $colors = [ 'silver' => 'silver-card', 'gold' => 'gold-card', 'gold+' =>'gold-card', 'platinum' => 'platinum-card', 'diamond' => 'diamond-card', ]; @endphp
@foreach($data['plans'] as $plan) @php $cardClass = $colors[strtolower($plan->plan_name)] ?? 'default-card'; @endphp
{{ $plan->discount_percentage }}% OFF

{{ strtoupper($plan->plan_name) }}

Allowed Contacts : {{ $plan->view_contact }}

{{ number_format((float) ($plan->final_cost ?? 0)) }} / {{ $plan->duration_days }} Days
₹{{ number_format($plan->plan_cost) }}
  • {{ number_format($plan->view_profile) }} Profile Views
  • {{ $plan->view_contact }} Contact Views
  • {{ $plan->duration_days }} Days Validity
@csrf
@endforeach

Description

{{ $data['membership']->plan_description }}

Terms & Conditions

{!! nl2br(e($data['membership']->terms_and_conditions)) !!}

@endsection