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

{{ __('Báo cáo lợi nhuận ngày ') }}{{ $currentDay }}/{{ $currentMonth }}/{{ $currentYear }}

@endsection @section('section.content')

Báo cáo doanh thu - lợi nhuận ngày {{ $currentDay }}/{{ $currentMonth }}/{{ $currentYear }} theo loại giao dịch - đối tác

Công thức: Lãi = Doanh thu x Chiết khấu nhập - Doanh thu x Chi phí hệ thống

@if (count($profits) > 0) @foreach ($profits as $item) @endforeach @else @endif
{{ __('Đối tác') }} {{ __('Loại giao dịch') }} {{ __('Doanh thu Cashin') }} {{ __('Chiết khấu nhập(%)') }} {{ __('Chi phí hệ thống(%)') }} {{ __('Lãi') }}
{{ get_username($item->user_id) }} {{ $item->type }} {{ number_format($item->cashin_income) }} {{ $item->discount_in }} {{ $item->profit }}
Không có dữ liệu

Tổng doanh thu:

(1) Chi phí nhân sự: {{ number_format(config('config_app.personnel_fee')) }}
(2) Chi phí kỹ thuật: {{ number_format(config('config_app.technical_fee')) }}
(3) Chi phí môi giới: {{ number_format(config('config_app.brokerage_fee')) }}
(4) Chi phí khác: {{ number_format(config('config_app.other_fee')) }}
(5) Phí rút Momo ngày {{ $currentDay }}/{{ $currentMonth }}/{{ $currentYear }}: {{ number_format($feeMomo) }}

Công thức: Lợi nhuận = Tổng doanh thu - (1)-(2)-(3)-(4)-(5)

Lợi nhuận:

@endsection @section('scripts') @endsection @section('styles') @endsection