@extends('layouts.admin') @section('content')

All Plans

@include('components.admin.error-message')
@foreach($plans as $plan)
{{ $plan->name }}

${{ number_format($plan->price,2) }}

  • Type: {{ $plan->type }}
  • ROI: {{ $plan->roi }}%
@endforeach
@endsection