@extends("common.layout") @php $page_title = $promotion->name; $totalCount = 1946; @endphp @section('page-title', $page_title) @section("content")

{{ $page_title }}

@php $pendingCnt = isset($static['pending']) ? $static['pending'] : 0; $appliedCnt = isset($static['applied']) ? $static['applied'] : 0; @endphp
총 인원
* 리뉴얼 전 회원 중 번호 중복된 회원(불변)
{{ number_format($totalCount) }}
대상자
* 이벤트 기간 중 로그인 한 회원
{{ number_format( $pendingCnt) }}
참여자
* 이벤트 기간 중 로그인 하고, 번호 변경한 회원
{{ number_format( $appliedCnt ) }}
미대상자
* 이벤트 기간 중 로그인하지 않은 회원
{{ number_format($totalCount - $pendingCnt - $appliedCnt ) }} 보러가기
{{-- --}}
{{ $list->total() }}
@foreach ( $list as $item ) @php $user = $item->user; $userDetailRoute = route('user.detail') . "/{$user?->id}"; $metadata = $item->status == 'APPLIED' ? json_decode($item->metadata, 1) : []; @endphp @endforeach
ID 회원명 아이디 이메일 연락처 마케팅 수신동의 가입경로 가입일시 마지막로그인 참여여부 참여경로
{{ $item->id }} @if (!empty($user->photo)) @endif {{ $user->name }} {{ $user->edm_id }} {{ $user->getPlain('email') }} @if ($user->phone_code and $user->phone_code!='82') +{{ $user->phone_code }} @endif {{ \BaseHelper::formatPhoneNumber($user->getPlain('phone')) }} @if($user->is_accepted_email) @endif @if($user->is_accepted_phone) @endif {{ $user->created_at }} {{ $user->last_signed_at }} $item->status == 'PENDING' , "badge-success" => $item->status == 'APPLIED', "badge-warning" => $item->status == 'EXPIRED', ])>{{ $status[$item->status] }} @if ( $item->status == 'APPLIED' )
({{ date('Y-m-d H:i', strtotime($item->used_at)) }})
@endif
{{ isset($metadata['root']) ? $metadata['root'] : "-" }}
@endsection