@extends('layouts.admin') @section('title', 'Membership Plans') @section('page_title', 'Membership Plans') @section('content') {{-- HEADER CARD WITH ADD BUTTON --}}
| # | Plan Name | Type | Amount | Duration | Status | Created | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $plan->name }} | {{ $plan->type }} | βΉ{{ number_format($plan->amount, 0) }} | {{ $plan->duration_months == 0 ? 'Lifetime' : $plan->duration_months . ' months' }} | {{ $plan->is_active ? 'Active' : 'Inactive' }} | {{ $plan->created_at->format('d M Y') }} |
|