{{ __('Plans') }}

{{ __('New Plan') }}
@if (session('status'))
{{ session('status') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{ __('Filter') }} {{ __('Reset') }}
@forelse ($plans as $plan) @empty @endforelse
{{ __('Name') }} {{ __('Price') }} {{ __('Billing') }} {{ __('Subscribers') }} {{ __('Status') }} {{ __('Actions') }}
{{ $plan->name }} {{ number_format($plan->price, 2) }} {{ $plan->billing_period->label() }} {{ $plan->subscriptions_count }} @if ($plan->is_active) {{ __('Active') }} @else {{ __('Inactive') }} @endif {{ __('Edit') }}
{{ __('No plans found.') }}
{{ $plans->links() }}