@extends('template.app') @section('title', 'Laporan Pembelian') @section('css') @endsection @section('breadcrumb') @endsection @section('content')
@include('components.toast-notification')
@foreach($report as $transaction) @endforeach
No. Invoice Tanggal Transaksi Nama Supplier Nama Toko Qty Pembelian Total Pembelian Total Bayar Sisa Bayar Total Retur Total Bersih Metode Pembayaran Status
{{ $transaction->transaction_id }} {{ $transaction->transaction_date }} {{ $transaction->supplier_name }} {{ $transaction->store_name }} {{ $transaction->total_quantity }} {{ number_format($transaction->total_purchase, 0, ',', '.') }} {{ number_format($transaction->total_amount_paid, 0, ',', '.') }} {{ number_format($transaction->remaining_payment, 0, ',', '.') }} {{ number_format($transaction->total_return, 0, ',', '.') }} {{ number_format($transaction->net_total, 0, ',', '.') }} {{ $transaction->payment_method }} {{ $transaction->status }}
@endsection @section('js') @endsection