@extends('dashboard.admin.layout') @section('title', 'Investment Plans') @section('page_subtitle', 'Plans list first, with plan creation moved into a standard modal workflow.') @section('content')
| ID | Name | Price | Duration | ROI% | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $plan->id }} | {{ $plan->name }} | ${{ number_format($plan->price, 2) }} | {{ $plan->duration_days }}d | {{ number_format($plan->roi_percent, 2) }}% | {{ $plan->trashed() ? 'Deleted' : ($plan->is_active ? 'Active' : 'Inactive') }} | @if(!$plan->trashed()) @else @endif |
| No plans yet. | ||||||