@extends('layouts.app') @section('content')

{{ __('Unpaid amount') }}

{{ auth()->user()->currency . $user_due }}

{{ __('From users') }}

{{ auth()->user()->currency . $reseller_due }}

{{ __('From resellers') }}

{{ __('Profit & loss') }}

{{ auth()->user()->currency . $profit_last_month }}

{{ __('Last month') }}

{{ auth()->user()->currency . $profit_this_year }}

{{ __('This year') }}

{{ __('Income & Expense') }}

{{ auth()->user()->currency . ($income_y + $upay_y + $rpay_y) }}

{{ __('Income this year') }}

{{ auth()->user()->currency . ($expense_y + $salary_y) }}

{{ __('Expense this year') }}

{{ __('Other income this year') }}

{{ auth()->user()->currency . $income_y }}

{{ __('Bills/office expense this year') }}

{{ auth()->user()->currency . $expense_y }}

{{ __('Staff salary this year') }}

{{ auth()->user()->currency . $salary_y }}

@endsection