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

{{ $plan->name }}

Gym: {{ $plan->gym->name ?? 'N/A' }}
Price: Rs {{ number_format($plan->price, 2) }}
Duration: {{ $plan->duration_value }} {{ str($plan->duration_type)->plural() }}
Status: @if($plan->is_active) Active @else Inactive @endif
@if($plan->description)
Description: {{ $plan->description }}
@endif
@endsection