Plan Management Total Plans: {{ $plans->total() ?? 0 }}

@forelse ($plans as $plan) @empty @endforelse
Code {!! $sortField === 'plan_code' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Name {!! $sortField === 'plan_name' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Description Type {!! $sortField === 'plan_type' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Price {!! $sortField === 'base_price' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Status {!! $sortField === 'plan_status' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!}
{{ $plan->plan_code }} {{ $plan->plan_name }} {{ Str::limit($plan->description, 50) }} {{ ucfirst($plan->plan_type) }} {{ $plan->currency }} {{ number_format($plan->base_price, 2) }} @if ($plan->plan_status === 'active') Active @elseif($plan->plan_status === 'draft') Draft @else Inactive @endif
No plans found.
{{-- Pagination --}} @push('scripts') @endpush