@extends('layouts.app') @section('title') Monthly Salary Report @stop @section('breadcrumb')
@stop @section('css') @stop @section('content')Name: | Month/Year: | Earning: | Tax: | Benavelent Found: | Deduction : | Advance : | Loan : | Net Salary : |
---|---|---|---|---|---|---|---|---|
{{$employees_salary->name}} | {{date('F', mktime(0, 0, 0, $month))}} / {{$curent_year}} | {{number_format($total[0])}} | {{number_format($total[3])}} | {{number_format($total[4])}} | {{number_format($total[1])}} | {{number_format($total[6])}} | {{number_format($total[5])}} | @php $net_salary = ($total[0]-$total[1]-$total[3]-$total[4] - $total[5] - $total[6]); $total_net_salary += $net_salary; $total_earning += $total[0]; $total_bf += $total[4]; $total_deduction += $total[1]; $total_advance += $total[6]; $total_loan += $total[5]; $total_tax += $total[3]; @endphp{{ number_format($net_salary) }} |
Total | {{number_format($total_earning)}} | {{number_format($total_tax)}} | {{number_format($total_bf)}} | {{number_format($total_deduction)}} | {{number_format($total_advance)}} | {{number_format($total_loan)}} | {{number_format($total_net_salary )}} |