@extends('layouts.admin') @section('page-title') {{__('Tax Summary')}} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('action-btn')
{{-- --}}
@endsection @section('content')
{{ Form::open(array('route' => array('report.tax.summary'),'method' => 'GET','id'=>'report_tax_summary')) }}
{{ Form::label('year', __('Year'),['class'=>'form-label'])}} {{ Form::select('year',$yearList,isset($_GET['year'])?$_GET['year']:'', array('class' => 'form-control select')) }}
{{ Form::close() }}
{{__('Report')}} :
{{__('Tax Summary')}}
{{__('Duration')}} :
{{$filter['startDateRange'].' to '.$filter['endDateRange']}}
{{__('Income')}}
@foreach($monthList as $month) @endforeach @forelse(array_keys($incomes) as $k=> $taxName) @foreach(array_values($incomes)[$k] as $price) @endforeach @empty @endforelse
{{__('Tax')}}{{$month}}
{{$taxName}}{{\Auth::user()->priceFormat($price)}}
{{__('Income tax not found')}}
{{__('Expense')}}
@foreach($monthList as $month) @endforeach @forelse(array_keys($expenses) as $k=> $taxName) @foreach(array_values($expenses)[$k] as $price) @endforeach @empty @endforelse
{{__('Tax')}}{{$month}}
{{$taxName}}{{\Auth::user()->priceFormat($price)}}
{{__('Expense tax not found')}}
@endsection