@extends('layouts.app') @section('title', 'Dashboard ยท SakuApp') @section('page-title', 'Dashboard') @section('content') {{-- Stat Cards --}}
No data for {{ now()->year }}
| Month | Income | Expense | Net |
|---|---|---|---|
| {{ DateTime::createFromFormat('!m', (int) $row->month)->format('M') }} | {{ number_format($row->income, 2) }} | {{ number_format($row->expense, 2) }} | {{ number_format($net, 2) }} |
No yearly data yet
| Year | Income | Expense | Net |
|---|---|---|---|
| {{ (int) $row->year }} | {{ number_format($row->income, 2) }} | {{ number_format($row->expense, 2) }} | {{ number_format($net, 2) }} |
| Date | Description | Type | Amount | Note |
|---|---|---|---|---|
| {{ $txn->date->format('d M Y') }} | {{ $txn->title }} | {{ ucfirst($txn->type) }} | {{ number_format($txn->amount, 2) }} | {{ $txn->note ? Str::limit($txn->note, 38) : 'โ' }} |