@extends('admin.layout.master') @section('title', "رسائل تم الدفع") @section('content')

رسائل تم الدفع

{{-- @include('admin.layout.message')--}}

رسائل تم الدفع

@foreach($rows as $row) @endforeach
# النوع إسم المرسل الباقة البريد الألكتروني رقم الجوال صورة التحويل التاريخ الحالة التحكم
{{$i}} {{$row->type == 'cash' ? 'كاش' : 'تحويل بنكي'}} {{$row->user->fullname}} {{$row->subscription ? $row->subscription->name : " تم حذف الباقة "}} {{$row->user->email}} {{$row->user->mobile}} {{$row->created_at->toDateString()}} @if($row->status == 'waiting') في مرحلة الإنتظار @elseif($row->status == 'done') تمت الموافقة @else تم الرفض @endif
@stop