Purchase Subscription

@if(isset($plans)) @foreach($plans as $plan)

{{ $plan->name }} @if(!$plan->monthly_billing) 2 Months Free @endif

${{ $plan->price }} /{{ $plan->monthly_billing ? 'month' : 'year' }}

    @if($plan->details) @forelse ($plan->details as $key => $value) @if ($value)
  • @if($value == "true") @else @endif {{ $key }}
  • @endif @empty @endforelse @endif
Choose Plan
@endforeach @endif