updated basic rate view

updated basic rate view
pull/11/head
paulcortez 7 months ago
parent 258cb788d7
commit 858205e8ae

@ -385,17 +385,17 @@
</thead> </thead>
<tbody> <tbody>
<?php <?php
$grossTotal = $selectedEmployee->basic_semi_monthly_pay; $grossTotal = $selectedEmployee->basic_daily_pay * 13;
$taxableGross = $selectedEmployee->basic_semi_monthly_pay; $taxableGross = $selectedEmployee->basic_daily_pay * 13;
$deductionTotal = 0; $deductionTotal = 0;
?> ?>
<tr> <tr>
<td> <td>
<span class="pl-3">Basic Salary (Daily)</span><br> <span class="pl-3">Basic Salary</span><br>
<span class="pl-4 text-sm"><?= number_format($selectedEmployee->basic_daily_pay, 2, ".", ",") ?> </span> <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>&nbsp;</td> <td>&nbsp;</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>&nbsp;</td> <td>&nbsp;</td>
</tr> </tr>
<?php foreach($empPayIncomeList as $empPayIncome):?> <?php foreach($empPayIncomeList as $empPayIncome):?>

Loading…
Cancel
Save