{{-- resources/views/admin/log/MemberLoginLogController.blade.php --}} @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-login-logs', [], false); $f = $filters ?? []; $years = $years ?? []; $year = (int)($f['year'] ?? (int)date('Y')); $dateFrom = (string)($f['date_from'] ?? ''); $dateTo = (string)($f['date_to'] ?? ''); $memNo = (string)($f['mem_no'] ?? ''); $sf = (string)($f['sf'] ?? ''); $conn = (string)($f['conn'] ?? ''); $ip4 = (string)($f['ip4'] ?? ''); $ip4c = (string)($f['ip4_c'] ?? ''); $err = (string)($f['error_code'] ?? ''); $platform = (string)($f['platform'] ?? ''); $browser = (string)($f['browser'] ?? ''); @endphp
| SEQ | 일시 | 회원 | 결과 | 경로 | IP | 플랫폼/브라우저 | 실패코드 |
|---|---|---|---|---|---|---|---|
| {{ $seq }} | {{ $r['dt_reg'] ?? '-' }} | @if($memNoInt > 0 && $memLink) {{ $memNoInt }} @else 0 @endif | {{ $r['sf_label'] ?? '-' }} | {{ $r['conn_label'] ?? '-' }} | {{ $ip4 !== '' ? $ip4 : '-' }} @if($ip4c !== '') {{ $ip4c }} @endif | {{ $plat !== '' ? $plat : '-' }} {{ $brow !== '' ? $brow : '-' }} | @if($errShow !== '') {{ $errShow }} @else - @endif |
| 데이터가 없습니다. | |||||||