@extends('admin.layouts.app') @section('title', '계좌 성명인증 로그') @section('page_title', '계좌 성명인증 로그') @section('page_desc', '더즌 성명인증 요청/결과 로그를 조회합니다.') @section('content_class', 'a-content--full') @push('head') @endpush @section('content') @php $indexUrl = route('admin.systemlog.member-account-logs', [], false); $f = $filters ?? []; $dateFrom = (string)($f['date_from'] ?? ''); $dateTo = (string)($f['date_to'] ?? ''); $memNo = (string)($f['mem_no'] ?? ''); $bank = (string)($f['bank_code'] ?? ''); $status = (string)($f['status'] ?? ''); $account = (string)($f['account'] ?? ''); $name = (string)($f['name'] ?? ''); $q = (string)($f['q'] ?? ''); @endphp
계좌 성명인증 로그
요청/결과 JSON은 모달로 표시 (row 높이 고정)
초기화
{{ $page->total() }}
@forelse(($items ?? []) as $r0) @php $r = is_array($r0) ? $r0 : (array)$r0; $seq = (int)($r['seq'] ?? 0); $memNoInt = (int)($r['mem_no'] ?? 0); $memLink = $r['mem_link'] ?? null; $bankCode = (string)($r['bank_code'] ?? ''); $acctMask = (string)($r['account_masked'] ?? ''); $nameV = (string)($r['mam_accountname'] ?? ''); $proType = (string)($r['account_protype'] ?? ''); $statusInt = (int)($r['status_int'] ?? 0); $badge = (string)($r['status_badge'] ?? 'badge--bad'); $label = (string)($r['status_label'] ?? ''); $depositor = (string)($r['depositor'] ?? ''); $errCode = (string)($r['error_code'] ?? ''); $errMsg = (string)($r['error_message'] ?? ''); @endphp @empty @endforelse
SEQ request_time result_time mem_no bank account name protype status depositor/error JSON
{{ $seq }} {{ $r['request_time'] ?? '-' }} {{ $r['result_time'] ?? '-' }} @if($memNoInt > 0 && $memLink) {{ $memNoInt }} @else - @endif @if($bankCode !== '') {{ $bankCode }} @else - @endif @if($acctMask !== '') {{ $acctMask }} @else - @endif @if($nameV !== '') {{ $nameV }} @else - @endif @if($proType !== '') {{ $proType }} @else - @endif {{ $label }} ({{ $statusInt }}) @if($depositor !== '') {{ $depositor }} @elseif($errCode !== '' || $errMsg !== '') {{ trim($errCode.' '.$errMsg) }} @else - @endif
데이터가 없습니다.
{{ $page->onEachSide(1)->links('vendor.pagination.admin') }}
{{-- JSON Modal --}} @endsection