@extends('layouts.admin') @section('title', 'Kelola Transaksi') @section('content')
| Tanggal | User | Layanan | Total | Bukti Bayar | Status | Aksi |
|---|---|---|---|---|---|---|
| {{ $trx->created_at->format('d M Y H:i') }} |
{{ $trx->user->name }} {{ $trx->user->email }} |
{{ $trx->service_name }} | Rp {{ number_format($trx->amount, 0, ',', '.') }} | @if($trx->payment_proof) Lihat Bukti @else - @endif | @if($trx->status == 'paid') LUNAS @elseif($trx->status == 'verification') CEK BUKTI @elseif($trx->status == 'failed') DITOLAK @else PENDING @endif | |
| Belum ada transaksi masuk. | ||||||