@extends('layouts.master') @push('css') @endpush @section('content')
| Name | Designation | Card No | Opening | Payments | Deductions | Balance |
|---|---|---|---|---|---|---|
| {{ $deptName }} | ||||||
| {{ $row['employee_name'] }} | {{ $row['designation'] }} | {{ $row['card_no'] }} | {{ $n($row['opening']) }} | {{ $n($row['payments']) }} | {{ $n($row['deductions']) }} | {{ $n($row['balance']) }} |
| Dept. Totals ==> | {{ $n($deptData['totals']['opening']) }} | {{ $n0($deptData['totals']['payments']) }} | {{ $n0($deptData['totals']['deductions']) }} | {{ $n0($deptData['totals']['balance']) }} | ||
| GRAND TOTALS ==> | {{ $n($reportData['grand']['opening']) }} | {{ $n0($reportData['grand']['payments']) }} | {{ $n0($reportData['grand']['deductions']) }} | {{ $n0($reportData['grand']['balance']) }} | ||