@php $pageTitle = '会员中心 - '.$siteName; @endphp @include('partials.head') @include('partials.header')

会员中心

@auth @php $member = app(\Plugins\Neatstudio\Membership\Services\MembershipService::class)->isMember(auth()->user()); @endphp @if($member)
你是会员,可阅读全部会员专享内容。
@else
你还不是会员,开通后可解锁会员专享文章。
@endif @else
请先 登录 后购买会员。
@endauth
@forelse($plans as $plan)

{{ $plan->name }}

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

有效期 {{ $plan->duration_days }} 天

@if($plan->description)

{{ $plan->description }}

@endif @auth
@csrf
@endauth
@empty
暂无上架套餐
@endforelse

查看我的订阅

@include('partials.sidebar')
@include('partials.footer')