@extends('admin.layouts.app') @section('title', '批次详情') @section('page_title', '批次详情') @section('content') @php $typeText = $type === 'bas' ? 'BAS(批量同步订阅)' : ($type === 'bmpa' ? 'BMPA(批量标记支付并生效)' : '未知'); $selfWithoutBack = \App\Support\BackUrl::selfWithoutBack(); $backToListUrl = $safeBackForLinks !== '' ? $safeBackForLinks : '/admin/platform-orders'; $hasSummary = $summary !== null; $success = (int) (data_get($summary, 'success') ?? 0); $failed = (int) (data_get($summary, 'failed') ?? 0); $matched = (int) (data_get($summary, 'matched') ?? 0); $processed = (int) (data_get($summary, 'processed') ?? 0); $at = (string) (data_get($summary, 'at') ?? ''); $topReasons = (array) (data_get($summary, 'top_reasons', []) ?? []); $fallbackMatched = (int) (data_get($fallbackCounts, 'matched') ?? 0); $fallbackFailed = (int) (data_get($fallbackCounts, 'failed') ?? 0); @endphp
@if(($error ?? '') !== '')| 原因 | 次数 |
|---|---|
| {{ (string) (data_get($r, 'reason') ?? '-') }} | {{ (int) (data_get($r, 'count') ?? 0) }} |