@extends('layouts.admin') @section('styles') @endsection @section('app')
Kas

{{ formatToRupiah($cash) }}

Tambah Kas
mobile with coin
Pendapatan

{{ formatToRupiah($todayIncome) }}

{{ formatToRupiah($diffIncome) > 0 ? '+' : '' }}{{ formatToRupiah($diffIncome) }}
Cukur

{{ $todayShaving }}

{{ $diffShaving > 0 ? '+' : '' }}{{ $diffShaving }}
Pengeluaran

{{ formatToRupiah($todayExpense) }}

{{ formatToRupiah($diffExpense) > 0 ? '+' : '' }}{{ formatToRupiah($diffExpense) }}
Pelanggan Baru

{{ $todayNewCustomer }}

{{ $diffNewCustomer > 0 ? '+' : '' }}{{ $diffNewCustomer }}
Top Pelanggan
@foreach ($topCustomersByTotal as $item) @endforeach
Nama Kontak Jumlah Transaksi Total Transakski
{{ $item->customer->name ?? '--deleted--' }} {{ $item->customer->contact_number ?? '-' }} {{ $item->transaction_count }} {{ formatToRupiah($item->total_transaction) }}
@endsection @section('afterScript') @endsection