@extends('layouts.app') @section('page-title', 'Membership Plans') @section('content')
| 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 | |
| No membership plans found. Add your first plan | ||||||