@extends('layouts.app') @section('content') {{-- Back Button --}}
Kembali ke Laporan Kas
{{-- Mutations Table --}}

Riwayat Mutasi Kas

@forelse($mutations as $mutation) @empty @endforelse
Tanggal Dari Ke Jumlah Catatan Oleh
{{ $mutation->mutation_date->format('d/m/Y') }} {{ $mutation->getFromAccountLabel() }} {{ $mutation->getToAccountLabel() }} Rp {{ number_format($mutation->amount, 0, ',', '.') }} {{ $mutation->notes ?? '-' }} {{ $mutation->user->name ?? '-' }}
Belum ada mutasi kas
@if($mutations->hasPages())
{{ $mutations->links() }}
@endif
@endsection