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

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

@endsection @section('section.content')
@foreach ($incomeDataByMonth as $item) @endforeach
{{ __('Tháng') }} {{ __('Thu nhập Cashin') }} {{ __('Thu nhập Cashout') }} {{ __('Tổng thu nhập') }}
{{ $item['month'] }} {{ number_format($item['total_income_cashin']) }} {{ number_format($item['total_income_cashout']) }} {{ number_format($item['total_income']) }}
@endsection