@foreach($plans as $plan)

{{ $plan->name }}

@if(auth()->check() && auth()->user()->seller && auth()->user()->seller->country == 'India') {{ $plan->formatted_price_inr }} @else {{ $plan->formatted_price_usd }} @endif / {{ $plan->duration_days }} days

  • {{ $plan->product_limit }} Products
  • {{ $plan->inquiry_limit }} Inquiries/mo
  • @if($plan->banner_limit > 0)
  • {{ $plan->banner_limit }} Banners
  • @endif @if($plan->has_certificates)
  • Verified Certificates
  • @endif @if($plan->has_video)
  • Company Video
  • @endif
@if(isset($currentSubscription) && $currentSubscription && $currentSubscription->plan_id == $plan->id) @else @auth Get Started @else Login to Subscribe @endauth @endif
@endforeach