@adminCan('pricing.management') @endadminCan @forelse ($plans as $index => $plan) @adminCan('pricing.management') @endadminCan @empty @endforelse
{{ __('Serial') }} {{ __('Name') }} {{ __('Price') }} {{ __('Expiration') }} {{ __('Status') }}{{ __('Action') }}
{{ $plan?->serial }} {{ $plan?->plan_name }} {{ currency($plan?->plan_price) }} {{ $plan?->expiration_date }} @if ($plan?->status == Modules\Subscription\app\Enums\SubscriptionStatusType::ACTIVE->value)
{{ __('Active') }}
@else
{{ __('Inactive') }}
@endif