@extends('layouts.app') @section('page-title', 'Membership Plans') @section('content')

Membership Plans

Add New Plan
@forelse($plans as $plan) @empty @endforelse
ID Plan Name Gym Price Duration Status Action
#{{ str_pad($plan->id, 6, '0', STR_PAD_LEFT) }}
{{ $plan->name }}
{{ $plan->description ?? 'No description' }}
{{ $plan->gym->name ?? 'N/A' }} Rs {{ number_format($plan->price, 2) }} {{ $plan->duration_value }} {{ str($plan->duration_type)->plural() }} @if($plan->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No membership plans found. Add your first plan
@endsection @push('scripts') @endpush