@extends('layouts.admin') @section('content') All Plans Add Plan @include('components.admin.error-message') @foreach($plans as $plan) {{ $plan->name }} ${{ number_format($plan->price,2) }} Type: {{ $plan->type }} ROI: {{ $plan->roi }}% Edit Delete @csrf Edit Plan Name Price Type type == 'Main' ? 'selected' : '' }}>Main type == 'Promo' ? 'selected' : '' }}>Promo type == 'Signal' ? 'selected' : '' }}>Signal ROI (%) Features (comma separated) @foreach(($plan->features ?? []) as $feature) {{ $feature }} @endforeach @endforeach