JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Manage Income Vs Expense') }} @endsection @section('breadcrumb') @endsection @section('action-button') @endsection @push('script-page') @endpush @section('content')
{{ Form::open(['route' => ['report.income-expense'], 'method' => 'get', 'id' => 'report_income_expense']) }}
{{ Form::label('start_month', __('Start Month'), ['class' => 'form-label']) }} {{ Form::month('start_month', isset($_GET['start_month']) ? $_GET['start_month'] : '', ['class' => 'month-btn form-control current_date', 'autocomplete' => 'off', 'placeholder' => 'Select start month']) }}
{{ Form::label('end_month', __('End Month'), ['class' => 'form-label']) }} {{ Form::month('end_month', isset($_GET['end_month']) ? $_GET['end_month'] : '', ['class' => 'month-btn form-control current_date', 'autocomplete' => 'off', 'placeholder' => 'Select end month']) }}
{{ Form::close() }}
{{ __('Report') }}

{{ __('Income vs Expense Summary') }}

{{ __('Duration') }}

{{ $filter['startDateRange'] . ' to ' . $filter['endDateRange'] }}

{{ __('Total Income') }}

{{ \Auth::user()->priceFormat($incomeCount) }}

{{ __('Total Expense') }}

{{ \Auth::user()->priceFormat($expenseCount) }}

@endsection @push('script-page') @endpush