@extends('layouts.admin') @section('title', 'Plans Management') @section('content')
| Plan | Price | Billing Cycle | Subscriptions | Status | Actions |
|---|---|---|---|---|---|
|
{{ $plan->name }}
{{ Str::limit($plan->description, 50) }}
@if($plan->is_featured)
Featured
@endif
|
${{ number_format($plan->price, 2) }}
@if($plan->billing_cycle === 'yearly')
${{ number_format($plan->price / 12, 2) }}/month
@endif
|
{{ ucfirst($plan->billing_cycle) }} |
{{ $plan->subscriptions_count }}
subscriptions
|
@if($plan->is_active) Active @else Inactive @endif | |