{{ $title }}

Add New Plan @if (!empty(getStripeAccountId())) cached @endif
Plan name & description
Pricing
Type
Is Offline
Status
Action
@foreach ($plans as $key => $plan)
{{ $plan->name ?? '' }}
@if ($plan->plan_type === 'request')
{{ currency_symbol('usd') }}{{ number_format($plan->price) ?? '' }} One time
@endif @if ($plan->plan_type === 'subscription')
{{ currency_symbol('usd') }}{{ number_format($plan->plan_start_at) ?? '0' }} {{ $plan->plan_cycle_name ?? '' }}
@endif
{{ $plan->customer_type ?? 'Unknown' }}
edit
@csrf @method('DELETE')
@endforeach