@extends('admin.layouts.app') @section('panel')
@forelse($plans as $plan) @empty @endforelse
@lang('Name') @lang('Monthly Price') @lang('Yearly Price') @lang('Credit') @lang('Status') @lang('Action')
{{ __($plan->name) }} {{ showAmount($plan->monthly_price) }} {{ showAmount($plan->yearly_price) }} @lang('Monthly') : {{ getAmount($plan->monthly_credit) }}
@lang('Yearly') : {{ getAmount($plan->yearly_credit) }}
@php echo $plan->statusBadge; @endphp
@lang('Edit') @if ($plan->status == Status::ENABLE) @else @endif
{{ __($emptyMessage) }}
@if ($plans->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @lang('Add New') @endpush