{{ __('Kode Transaksi') }} : |
{{ $transaction->transaction_code }} |
{{ __('Nomer Telepon') }} : |
{{ $transaction->msisdn }} |
{{ __('Tagihan') }} : |
Asuransi |
{{ __('Nama Customer') }} : |
{{ $transaction->customer_name }} |
{{ __('Produk') }} : |
BPJS |
{{ __('Pinalty') }} : |
{{ number_format($transaction->penalty, '0', ',', '.') }} |
{{ __('Tanggal Transaksi') }} : |
{{ $transaction->transaction_date }} |
{{ __('Billing') }} : |
{{ number_format($transaction->billing, '0', ',', '.') }} |
{{ __('Customer ID') }} : |
{{ $transaction->customer_id }} |
{{ __('Biaya Admin') }} : |
{{ number_format($transaction->admin, '0', ',', '.') }} |
Struk : |
@if($transaction->status == '3')
@if(!empty($transaction->optional_data))
Cetak Struk
@endif
@endif
|
{{ __('Pembayaran') }} : |
{{ number_format($transaction->payment, '0', ',', '.') }} |
{{ __('Message') }} : |
@if(!empty(json_decode($transaction->message)))
@foreach(json_decode($transaction->message) as $key => $message)
- {{ $key }} : {{ $message }}
@endforeach
@else
{{ $transaction->message }}
@endif
|
|
|