@extends('layouts.authenticated') @section('title', 'Detail Transaksi') @section('page-title', 'Detail Transaksi') @section('page-content')
{{ $transaction->created_at->format('d/m/Y H:i') }}
Kasir
{{ $transaction->user->name }}
Pembayaran
{{ ucfirst($transaction->payment_method) }}
Pelanggan
{{ $transaction->customer_name }}
| Item | Qty | Subtotal |
|---|---|---|
| {{ $d->product_name }} | {{ $d->quantity }} | Rp {{ number_format($d->total, 0, ',', '.') }} |