@ -385,17 +385,17 @@
< / thead >
< tbody >
<?php
$grossTotal = $selectedEmployee->basic_semi_monthly_pay ;
$taxableGross = $selectedEmployee->basic_semi_monthly_pay ;
$grossTotal = $selectedEmployee->basic_daily_pay * 13 ;
$taxableGross = $selectedEmployee->basic_daily_pay * 13 ;
$deductionTotal = 0;
?>
< tr >
< td >
< span class = "pl-3" > Basic Salary (Daily) < / span > < br >
< span class = "pl-4 text-sm" > <? = number_format ( $selectedEmployee -> basic_daily_pay , 2 , "." , "," ) ?> </span >
< span class = "pl-3" > Basic Salary< / span > < br >
< span class = "pl-4 text-sm" > < i > Php<? = number_format ( $selectedEmployee -> basic_daily_pay , 2 , "." , "," ) ?> daily rate (assumes 13 days of work per cutoff) </i > </span >
< / td >
< td > < / td >
< td class = "text-right" > <? = number_format ( $selectedEmployee -> basic_daily_pay , 2 , "." , "," ) ?> </ td >
< td class = "text-right" > <? = number_format ( $selectedEmployee -> basic_daily_pay * 13 , 2 , "." , "," ) ?> </ td >
< td > < / td >
< / tr >
<?php foreach ( $empPayIncomeList as $empPayIncome ) : ?>