@extends('admin.layouts.app') @section('panel')
@forelse($plans as $plan) @empty @endforelse
@lang('Name') @lang('Price') @lang('Validity') @lang('Time') @lang('Status') @lang('Action')
{{ $plan->name }} {{ showAmount($plan->price) }} {{ $plan->type == 1 ? __('Monthly') : __('Yearly') }} {{ showDateTime($plan->created_at) }} @php echo $plan->statusBadge($plan->status); @endphp
{{ __($emptyMessage) }}
@if ($plans->hasPages()) @endif
{{-- delete modal --}} @endsection @push('breadcrumb-plugins') @lang('Add Plan') @endpush @push('script') @endpush