@extends('layouts.console') @section('title','課金・サブスク')@section('console','運営管理')@section('heading','課金・サブスク') @section('who','管理者')@section('logout', route('admin.logout')) @section('nav')@include('admin._nav')@endsection @section('content')

未入金の請求書

@forelse($invoices as $iv) @empty @endforelse
請求番号会員金額(税込)発行日支払期限入金確認
{{ $iv->code }} {{ optional($iv->member)->name }}(#{{ $iv->member_id }}) ¥{{ number_format($iv->total) }} {{ $iv->issued_at?->format('Y-m-d') }} {{ $iv->due_at?->format('Y-m-d') }}
@csrf
未入金の請求書はありません。

サブスク(申込中・有効)

@forelse($subs as $s) @empty @endforelse
会員プラン状態周期開始終了操作
{{ optional($s->member)->name }}(#{{ $s->member_id }}) {{ optional($s->plan)->name }} {{ ['pending'=>'申込中','active'=>'有効'][$s->status] ?? $s->status }} {{ $s->cycle==='year'?'年':'月' }} {{ $s->starts_at?->format('Y-m-d') }} {{ $s->ends_at?->format('Y-m-d') }} @if($s->status==='pending')
@csrf
@endif
@csrf
対象のサブスクはありません。
@endsection