@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')
Plans

Review pricing, duration, ROI, and status before opening the create form.

@forelse($plans as $plan) @if(!$plan->trashed()) @endif @empty @endforelse
IDNamePriceDurationROI%StatusActions
{{ $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())
@csrf
@else
@csrf
@endif
No plans yet.
{{ $plans->links() }}
@endsection