@extends('layouts.app') @section('content')

Semua Transaksi

Show
entries
{{--
--}}
{{-- @php $transactionTypes = ['Song Sale', 'Royalty Payment', 'Cover Income', 'Stream Revenue', 'Withdrawal', 'Song Sale', 'Royalty Payment', 'Cover Income', 'Stream Revenue', 'Withdrawal']; $statuses = ['Completed', 'Pending', 'Completed', 'Completed', 'Processing', 'Completed', 'Completed', 'Pending', 'Completed', 'Completed']; $amounts = [125000, 85000, 35000, 45000, -200000, 110000, 75000, 40000, 55000, -150000]; $icons = ['music', 'license', 'microphone-2', 'player-play', 'cash-banknote', 'music', 'license', 'microphone-2', 'player-play', 'cash-banknote']; $colors = ['primary', 'green', 'yellow', 'azure', 'red', 'primary', 'green', 'yellow', 'azure', 'red']; @endphp @for ($i = 0; $i < 10; $i++) @endfor --}}
Transaction ID Date Description Type Amount Status
belum terdapat data
TRX{{ strtoupper(substr(md5(mt_rand()), 0, 8)) }} {{ now()->subDays($i)->format('M d, Y H:i') }}
{{ $transactionTypes[$i] }}
{{ $amounts[$i] < 0 ? 'Debit' : 'Credit' }} {{ $amounts[$i] < 0 ? '-' : '+' }} Rp {{ number_format(abs($amounts[$i]), 0, ',', '.') }} {{ $statuses[$i] }}
@endsection