@extends('admin.layouts.app') @section('title', '套餐管理') @section('page_title', '套餐管理') @section('content')
这里是总台视角的套餐目录页,用于沉淀平台可售卖的标准能力包。
当前阶段先完成套餐主数据可见、可筛与口径收拢,后续再接授权项、售价规则与上下架动作。
后续将从这里进入套餐详情、授权项与订阅联动。
| ID | 套餐名称 | 编码 | 计费周期 | 售价 | 划线价 | 状态 | 排序 | 发布时间 | 操作 |
|---|---|---|---|---|---|---|---|---|---|
| {{ $plan->id }} |
{{ $plan->name }}
{{ $plan->description ?: '暂无说明' }}
|
{{ $plan->code }} | {{ $billingCycleLabels[$plan->billing_cycle] ?? $plan->billing_cycle }} | ¥{{ number_format((float) $plan->price, 2) }} | ¥{{ number_format((float) $plan->list_price, 2) }} | {{ $statusLabels[$plan->status] ?? $plan->status }} | {{ $plan->sort }} | {{ optional($plan->published_at)->format('Y-m-d H:i:s') ?: '-' }} | 编辑 |
| 暂无套餐数据,当前阶段先把套餐主表与总台目录立起来,后续可继续接套餐创建、授权项与订阅关联。 | |||||||||