{{__('user.Subscription Plan')}}

@foreach ($plans as $index => $plan )
{{ $plan->plan_name }}
{{ $setting->currency_icon }}{{ sprintf('%0.2f', $plan->plan_price) }}
@if ($plan->expiration_date == 'monthly') {{__('user.Monthly')}} @elseif ($plan->expiration_date == 'yearly') {{__('user.Yearly')}} @elseif ($plan->expiration_date == 'lifetime') {{__('user.Lifetime')}} @endif
@if ($plan->maximum_service == -1)
{{__('user.Unlimited Services')}}
@else
{{ $plan->maximum_service }} {{__('user.Services')}}
@endif
{{__('user.Unlimited Booking')}}
{{__('user.Custom Working Schedule')}}
{{__('user.Support Ticket')}}
{{__('user.Live Chat')}}
@if ($plan->plan_price == 0) {{__('user.Trail Now')}} @else {{__('user.Purchase Now')}} @endif
@endforeach