@extends('layouts.app') @section('title', 'سجل الواتساب') @section('content')
جميع رسائل الواتساب التي تم إرسالها
سيتم عرض الرسائل هنا عند إرسالها
| النوع | المستلم | القالب | الحالة | التاريخ |
|---|---|---|---|---|
| {{ $msg->type }} | {{ $msg->recipient_name ?? $msg->recipient_phone }} | {{ $msg->template_type }} | @php $statusClass = match($msg->status) { 'sent' => 'bg-green-100 text-green-700', 'sending' => 'bg-blue-100 text-blue-700', 'failed' => 'bg-red-100 text-red-700', 'pending' => 'bg-yellow-100 text-yellow-700', default => 'bg-gray-100 text-gray-500', }; @endphp {{ $msg->status }} | {{ $msg->created_at->format('Y-m-d H:i') }} |