diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 55fb529..032bc1f 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -20,6 +20,10 @@ 待生效 可同步订阅 + + 部分退款 + + 已退款 @@ -303,6 +307,7 @@ 最近批量同步 最近批量生效 回执数 + 退款数 操作 @@ -433,6 +438,16 @@ 0 @endif + + @php + $refundCount = count((array) (data_get($order->meta, 'refund_receipts', []) ?? [])); + @endphp + @if($refundCount > 0) + {{ $refundCount }} + @else + 0 + @endif + @php $canActivate = ($order->payment_status === 'paid') && ($order->status === 'activated');