@extends('layouts.app') @section('title', 'SMS Logs') @section('content')
| # | Time | Recipient | Template | Message | Status | SMS | Cost | Sent At | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $log->id }} | {{ $log->created_at?->format('d M H:i') }} |
{{ $log->recipient_mobile }}
@if ($log->recipient_name)
{{ $log->recipient_name }} @endif |
@if ($log->template) {{ $log->template->name }} @else — @endif | {{ ucfirst($log->status) }} | {{ $log->sms_count }} | ৳{{ number_format($log->sms_cost, 2) }} | {{ $log->sent_at?->format('d M H:i') ?? '—' }} | @if ($log->status === 'failed') @endif | |
| No SMS logs found. | |||||||||