@extends('layouts.app') @section('title', 'سجل الواتساب') @section('content')

سجل الواتساب

جميع رسائل الواتساب التي تم إرسالها

@if(!isset($messages) || $messages->isEmpty())

لا توجد رسائل

سيتم عرض الرسائل هنا عند إرسالها

@else
@foreach($messages as $msg) @endforeach
النوع المستلم القالب الحالة التاريخ
{{ $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') }}
{{ $messages->links() }}
@endif
@endsection