@extends('admin.layouts.app') @section('title', 'SMS 이력 상세') @section('page_title', 'SMS 이력 상세') @section('page_desc', '배치 및 수신자별 상세') @push('head') @endpush @section('content') @php $st = (string)$batch->status; $pillClass = match ($st) { 'submitted' => 'pill--ok', 'partial','submitting','queued','scheduled' => 'pill--warn', 'failed','canceled' => 'pill--bad', default => 'pill--warn', }; @endphp
Batch ID
#{{ $batch->id }}
상태
● {{ $batch->status }}
모드
{{ $batch->send_mode }}
예약
{{ $batch->scheduled_at ?? '-' }}
건수
유효 {{ $batch->valid_count }} / 전체 {{ $batch->total_count }} / 중복 {{ $batch->duplicate_count }} / 오류 {{ $batch->invalid_count }}

문구
{{ $batch->message_raw }}
목록 새 발송
상태
수신번호
메시지 검색
초기화
@forelse($items as $it) @php $ist = (string)$it->status; $ic = match ($ist) { 'submitted' => 'pill--ok', 'failed' => 'pill--bad', default => 'pill--warn', }; @endphp @empty @endforelse
Seq 수신번호 타입 상태 제출시간 메시지
{{ $it->seq }} {{ $it->to_number }} {{ $it->sms_type }} ● {{ $it->status }} {{ $it->submitted_at ?? '-' }}
{{ $it->message_final }}
상세 데이터가 없습니다.
{{ $items->links() }}
@endsection