@foreach ($plansList as $plan)
{{ $plan->name }}
LKR{{ number_format($plan->price, 2, '.' , ',') }}/mo
{{ Str::limit($plan->description, 500) }}
@auth @if(auth()->user()->activeUserPlan()?->plan_id == $plan->id) Current Plan @else Get Started {{ $plan->name }} @endif @else Get Started {{ $plan->name }} @endauth
@endforeach