@if (!empty($latestPayments)) @foreach ($latestPayments as $payment) @endforeach
# អតិថិជន ទិញវគ្គសិក្សា តម្លែ ស្ថានភាព
{{ $loop->iteration }} {{ Str::limit($payment->customer->username, 10) }} {{ Str::limit($payment->course->course_name, 20) }} {{ number_format($payment->course->price) }} $ {{ $payment->payment_status }}
@else
No new payments at the moment.
@endif @if ($showPopup)

@foreach($newPayments as $item)

🔥មានការទិញវគ្គសិក្សាថ្មី
ឈ្មោះអ្នកទិញ៖ {{$item->customer->username}}
វគ្គសិក្សា៖ {{$item->course->course_name}}
តម្លៃវគ្គសិក្សា៖ {{$item->course->price}}$

@endforeach

សូមពិនិត្យឱ្យបានលឿន ដើម្បីផ្ដល់សេវាកម្មល្អដល់អតិថិជន🙏🙏🙏

@endif