@if($plan) @if($plan['id'] != null) {{ __('Update Plan') }} @else {{ __('New Plan') }} @endif
{{ config('app.settings.currency.symbol') }}
@if($plan['id']) {{ __('Update') }} @else {{ __('Add') }} @endif
@endif
@foreach($plans as $plan)

{{ $plan->name }}

@if($plan->is_active)
{{ __('Active') }}
@else
{{ __('Inactive') }}
@endif
{{ $plan->validity }} {{ __(ucfirst($plan->validity_type) . ( $plan->validity > 1 ? 's' : '')) }}
{{ config('app.settings.currency.symbol') }}{{ $plan->price }}
{{ __('Map Numbers') }} @if($plan->is_active)
{{ __('Disable') }}
@else
{{ __('Enable') }}
@endif
{{ __('Delete') }}
@endforeach