@extends('layouts.admin', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
{{ __('S.No') }} | {{ __('Type') }} | {{ __('Plan Name') }} | {{ __('Plan Price') }} | {{ __('Plan Validity') }} | {{ __('Status') }} | {{ __('Actions') }} |
---|---|---|---|---|---|---|
{{ $loop->index + 1 }} | {{ $plan->plan_type ? $plan->plan_type : "-" }} | {{ __($plan->plan_name) }} | @if ($plan->plan_price == 0) {{ __('Free') }} @else {{ $currencies[0]->currency }}{{ $plan->plan_price }} @endif | @if ($plan->validity == '9999') {{ __('Forever') }} @endif @if ($plan->validity == '31') {{ __('Monthly') }} @endif @if ($plan->validity == '366') {{ __('Yearly') }} @endif @if ($plan->validity >= '1' && $plan->validity != '31' && $plan->validity != '366' && $plan->validity != '9999') {{ $plan->validity.' '.__('Days') }} @endif | @if ($plan->status == 0) {{ __('Discontinued') }} @else {{ __('Active') }} @endif |