@extends('admin.layouts.app') @section('title', '메일 이력 상세') @section('page_title', '메일 이력 상세') @section('page_desc', '배치 및 수신자별 상세') @push('head') @endpush @section('content') @php $statusLabel = $labels ?? []; $modeLabel = $modeLabels ?? []; $sent = (int)($batch->sent_count ?? 0); $total = (int)($batch->valid_count ?? $batch->total_count ?? 0); @endphp
Batch ID
#{{ $batch->id }}
상태
{{ $statusLabel[(string)$batch->status] ?? $batch->status }}
모드
{{ $modeLabel[(string)$batch->send_mode] ?? $batch->send_mode }}
예약
{{ $batch->scheduled_at ?? '-' }}
진행률
{{ $sent }}/{{ $total }}

제목
{{ $batch->subject_raw ?? '-' }}
내용
{{ $batch->body_raw ?? $batch->body ?? '' }}
목록 발송 @if(in_array((string)$batch->status, ['queued','submitting','scheduled'], true))
@csrf
@endif @if(in_array((string)$batch->status, ['failed','partial'], true))
@csrf
@endif
상태
수신자
검색(제목/내용)
@forelse($items as $it) @empty @endforelse
Seq 수신자 상태 제출시간 제목 요약
{{ $it->seq }} {{ $it->to_email }} {{ $statusLabel[(string)$it->status] ?? $it->status }} {{ $it->sent_at ?? '-' }} {{ $it->subject_final ?? $it->subject ?? '-' }} {{ $it->body_final ?? '-' }}
상세 데이터가 없습니다.
{{ $items->onEachSide(1)->links('vendor.pagination.admin') }}
@endsection