@extends('merchant.layouts.app') @section('title', 'Keuangan Merchant') @section('page_title', 'Keuangan') @section('content')
{{ session('success') }}
{{ session('error') ?? $error }}
{{ $balance['formatted_available'] ?? 'Rp 0' }}
{{ $balance['formatted_pending'] ?? 'Rp 0' }}
| Tanggal | Deskripsi | Tipe | Jumlah | Status |
|---|---|---|---|---|
|
{{ \Illuminate\Support\Carbon::parse($trx['created_at'])->translatedFormat('d M Y') }}
{{ \Illuminate\Support\Carbon::parse($trx['created_at'])->format('H:i') }}
|
{{ $trx['description'] ?? '-' }} |
{{ $trx['type'] ?? '-' }} | {{ ($trx['amount'] ?? 0) >= 0 ? '+' : '' }}{{ $trx['formatted_amount'] ?? 'Rp 0' }} | {{ $trx['status_label'] ?? ucfirst($trx['status'] ?? '-') }} |
|
Belum ada transaksi Transaksi Anda akan muncul di sini |
||||