@extends('layouts.main', ['title' => 'Dashboard', 'page_heading' => 'Dashboard']) @section('content')
@include('dashboard.charts.chart')

5 Transaksi Terakhir

@forelse($latestCashTransactions as $latestCashTransaction) @empty @endforelse
Nama Pelajar Total Bayar Tanggal Pencatat Detail

{{ $latestCashTransaction->students->name }}

{{ indonesianCurrency($latestCashTransaction->amount) }}

{{ date('d-m-Y', strtotime($latestCashTransaction->date)) }}

{{ $latestCashTransaction->users->name }}

Data kosong!

@endsection @push('modal') @include('dashboard.modal.show') @endpush @push('js') @include('dashboard.script') @endpush