@extends('layouts.app') @section('content')
| ID | Phone | Type | Status | Message | Sent At |
|---|---|---|---|---|---|
| #{{ str_pad($log->id, 5, '0', STR_PAD_LEFT) }} | {{-- Phone --}}{{ $log->phone }} | {{-- Type --}}{{ $log->message_type ?? '—' }} | {{-- Status --}}@if($log->status == 'success') Delivered @else Failed @endif | {{-- Message --}}{{-- Date --}} |
{{ \Carbon\Carbon::parse($log->sent_at)->format('d M Y') }}
{{ \Carbon\Carbon::parse($log->sent_at)->format('h:i A') }}
|
No SMS logs foundMessages will appear here once they are sent. |
|||||