@foreach ($plans as $plan)
@if ($plans != null)
{{ $plan->duration }}
{{ $plan->plan_type == 'monthly' ? __('Days') : __('Year') }}
{{ $plan->title }}
-
{!! $plan->description !!}
{{ $plan->price }}/
{{ $plan->plan_type }}
{{-- payment-modal code start --}}
{{-- payment-modal code end --}}
@else
{{ __('No Plan Found') }}
@endif
@endforeach