@extends('admin.layouts.app') @section('content')
{{-- Failed --}} @if (Session::has("failed")) @endif {{-- Success --}} @if(Session::has("success")) @endif
{{-- Plans --}}
@foreach ($plans as $plan) @endforeach
{{ __('S.No') }} {{ __('Plan Name') }} {{ __('Plan Price') }} {{ __('Plan Validity') }} {{ __('Status') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ __($plan->name) }} @if ($plan->price == 0) {{ __('Free') }} @else {{ $currencies[0]->currency }}{{ $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
{{-- Footer --}} @include('admin.includes.footer')
{{-- Delete Plan Modal --}} {{-- Custom JS --}} @section('custom-js') @endsection @endsection