@extends('layouts.app')
@section('title', 'الإيراد اليومي')
@php
$methodMeta = [
'cash' => ['label' => 'نقدي', 'color' => 'success', 'icon' => 'cash'],
'card' => ['label' => 'بطاقة', 'color' => 'info', 'icon' => 'credit-card'],
'bank_transfer' => ['label' => 'تحويل', 'color' => 'primary', 'icon' => 'building-bank'],
'wallet' => ['label' => 'محفظة', 'color' => 'purple', 'icon' => 'wallet'],
'cheque' => ['label' => 'شيك', 'color' => 'warning', 'icon' => 'file-invoice'],
];
@endphp
@section('content')
غيّر النطاق الزمني أو ابدأ بتسجيل دفعات.
| التاريخ | اليوم | عدد العمليات | إجمالي اليوم |
|---|---|---|---|
| {{ $date->format('Y-m-d') }} | {{ $date->translatedFormat('l') }} | {{ $d->count }} |
{{ number_format($d->total, 2) }}
|
| الإجمالي | {{ number_format($kpis['count']) }} |
{{ number_format($kpis['total'], 2) }} |
|