@extends('layouts.app') @section('title') {{ __('Income') }} @endsection @section('admin') active @endsection @section('section.header')

{{ __('Quản lí thu nhập') }}

@endsection @section('section.content')

Thu nhập hôm nay: {{ \Carbon\Carbon::now()->format('d/m/Y') }}

Loại Thu Nhập Số Tiền
Thu nhập từ Cashin {{ number_format($incomeFromCashinByDay) }}
Thu nhập từ Cashout {{ number_format($incomeFromCashoutByDay) }}
Tổng thu nhập {{ number_format($totalIncomeByDayAll) }}

Thu nhập tháng này: {{ \Carbon\Carbon::now()->format('m/Y') }}

Loại Thu Nhập Số Tiền
Thu nhập từ Cashin {{ number_format($incomeFromCashinByMonth) }}
Thu nhập từ Cashout {{ number_format($incomeFromCashoutByMonth) }}
Tổng thu nhập {{ number_format($totalIncomeByMonthAll) }}

Tổng thu nhập:

Loại Thu Nhập Số Tiền
Thu nhập từ Cashin {{ number_format($totalIncomeFromCashin) }}
Thu nhập từ Cashout {{ number_format($totalIncomeFromCashout) }}
Tổng thu nhập {{ number_format($totalIncomeAll) }}
@endsection