套餐与功能
仅展示「已发布 + 启用中」套餐。开通入口(A:站点开通型)将优先在此页面逐步接入。
返回首页
运营管理套餐
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
提交失败:
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@forelse($plans as $p)
{{ $p->name }}
{{ $p->billing_cycle }}
套餐编码:{{ $p->code }}
¥{{ number_format((float) $p->price, 2) }}
@if($p->description)
{{ $p->description }}
@endif
@csrf
开通意向(A:站点开通型,前期先由运营人工开通)
提交开通意向
运营手工下单入口
提示:前期先跑通收费闭环与治理;自助开通/自助支付会在后续版本接入。
@empty
当前暂无可对外展示的套餐(需满足:启用中 + 已发布)。
@endforelse