@extends('admin.layouts.app') @section('title', 'SMS 발송 이력') @section('page_title', 'SMS 발송 이력') @section('page_desc', '배치 단위로 조회합니다.') @php $STATUS_LABELS = [ 'scheduled' => '예약대기', 'queued' => '대기', 'submitting' => '전송중', 'submitted' => '전송완료', 'partial' => '일부실패', 'failed' => '실패', 'canceled' => '취소', ]; $MODE_LABELS = [ 'one' => '단건', 'many' => '대량', 'template' => '템플릿', ]; @endphp @push('head') @endpush @section('content')
| Batch | 생성일시 | 작성자 | 모드 | 예약 | 건수 | 상태 | 문구 |
|---|---|---|---|---|---|---|---|
| #{{ $b->id }} | {{ $b->created_at }} | {{ $b->admin_name ?? ('#'.$b->admin_user_id) }} | {{ $MODE_LABELS[$b->send_mode] ?? $b->send_mode }} | {{ $b->scheduled_at ?? '-' }} | {{ $b->valid_count }}/{{ $b->total_count }} | ● {{ $stLabel }} | {{ $b->message_raw }} |
| 데이터가 없습니다. | |||||||