Pricing Plan
Simple prices, flexible options & nothing hidden
@php
$gstPercent = 18;
$packages = [
['id'=>'basic','name'=>'Basic','leads'=>'3 Months','price'=>20000,'color'=>'border-yellow-400'],
['id'=>'gold','name'=>'Gold','leads'=>'','price'=>57000,'color'=>'border-yellow-400'],
['id'=>'platinum','name'=>'Platinum','leads'=>'','price'=>90000,'color'=>'border-gray-300'],
['id'=>'diamond','name'=>'Diamond','leads'=>'','price'=>161000,'color'=>'bg-green-500 text-white','highlight'=>true],
];
@endphp
@foreach($packages as $pkg)
@php
$gstAmount = round($pkg['price'] * $gstPercent / 100);
$total = $pkg['price'] + $gstAmount;
$isHighlight = isset($pkg['highlight']) && $pkg['highlight'];
@endphp
{{ $pkg['name'] }}
@if($pkg['id'] != 'basic')
Starting from
@endif
₹{{ number_format($pkg['price']) }}
+GST
- {{ $pkg['leads'] }}
- Verified Contacts
- Dedicated Support
- Instant Activation
@auth
@else
@endauth
@endforeach