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

{{ __('Quản lí doanh thu') }}

@endsection @section('section.content')

{{ __('Báo cáo doanh thu') }}

{{ __('Báo cáo lợi nhuận') }}

@if (!empty($incomes)) @foreach ($incomes as $item) @endforeach @else @endif
{{ __('Ngày') }} {{ __('Doanh thu Cashin') }} {{ __('Doanh thu Cashout') }} {{ __('Tổng doanh thu') }}
{{ $item->day }} {{ number_format($item->cashin_income) }} {{ number_format($item->cashout_income) }} {{ number_format($item->total_income) }}
Không có dữ liệu
{{ __('TỔNG CỘNG') }} {{ number_format($totalCashinIncome) }} {{ number_format($totalCashoutIncome) }} {{ number_format($totalIncome) }}
@endsection @section('scripts') @endsection @section('styles') @endsection