@extends('template.app') @section('title', 'Daftar Biaya Pengeluaran') @section('css') @endsection @section('breadcrumb') @endsection @section('content')
@include('components.toast-notification')
@foreach($expenses as $expense) @endforeach
ID Transaksi Tanggal Transaksi Nama Toko Metode Pembayaran Status Total Biaya Total Bayar Sisa Bayar Catatan Aksi
{{ $expense->transaction_id }} {{ $expense->transaction_date }} {{ $expense->store_name }} @if($expense->payment_status == 'lunas') Lunas @else Belum Lunas @endif Rp. {{ number_format($expense->total_expense_amount, 0, ',', '.') }} @if($type == 'other') @else @endif
@endsection @section('js') @endsection