@extends('layouts.app') @section('title') Tax Deduction Report @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

Tax Deduction Monthly Report






@if(Session::has('success')) @endif
@php $total_net_salary = 0; $total_tax_monthly = 0; @endphp @foreach($hrmemployees_salaries as $employees_salary ) @php $total = \App\HrmEmployeeMonthlyEarningDeduction::getData($employees_salary->id , $month , $curent_year ); @endphp @if($total[3] > 0 ) @php $total_tax_monthly += $total[3]; @endphp @endif @endforeach
Name: Month/Year: Tax:
{{$employees_salary->name}} {{date('F', mktime(0, 0, 0, $month))}} / {{$curent_year}} {{number_format($total[3])}}
Total   {{number_format($total_tax_monthly)}}
@stop @section('js') @stop