@extends('layouts.app') @section('title') Employee Payroll @stop @section('breadcrumb') @stop @section('content')

Employees Monthly Payroll

{{-- Add New --}}

@foreach ($hrmEmployees as $salary) @php $total = \App\HrmEmployeeMonthlyEarningDeduction::getData($salary->id , $month , $year ); @endphp @endforeach
#: Name: Designation:
{{$count++}} {{$salary->name}} {{$salary->company_detail->designation->name }}
@php $total_net_salary = 0; $total_net_salary = $total_monthly_earning - ($total_monthly_deduction + $total_monthly_tax); @endphp
Month/Year: Total Earning: Tax: Total Deduction: Net Salary: Action
{{date('F', mktime(0, 0, 0, $month))}}/{{$year}} {{number_format($total_monthly_earning)}} {{number_format($total_monthly_tax)}} {{number_format($total_monthly_deduction)}} {{number_format($total_net_salary )}} View Make Voucher
{{csrf_field()}}
Type Checked Posted Date Entry No. ADJ Account Memo Debit/Credit (+/-) Action
@stop @section('js') @stop