@extends('layouts.admin') @section('title', 'Plans') @section('page-title', 'Manage Plans') @section('content')
{{ $plans->count() }} plans total
Add Plan| Name | Price | Duration | Daily Limit | Subscribers | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $p->name }} | ${{ number_format($p->price, 2) }} | {{ $p->duration_days }} days | {{ $p->daily_survey_limit }}/day | {{ $p->user_plans_count }} | {{ $p->is_active ? 'Active' : 'Inactive' }} | Edit |
| No plans found. | ||||||