Salary Sheet - {{ $monthDate->format('F Y') }}

Review total salary, advance, and the net payable for each staff member.

Back to Months
@if (session('success'))
{{ session('success') }}
@endif

Financial Year

{{ $financialYear['label'] }}

Staff Count

{{ $summary['staff_count'] }}

Total Salary

₹{{ number_format($summary['total_salary'], 2) }}

Total Advance

₹{{ number_format($summary['total_advance'], 2) }}

Working Days

{{ $summary['working_days'] }}

@php $canManagePayroll = auth()->user()->isCompanyAdmin() || auth()->user()->hasPermission('teams.staff.salary.manage'); @endphp
@csrf
@foreach ($rows as $row) @endforeach
Staff Name Total Salary Advance Net Payable Salary Paid
{{ $row['staff']->name }}
{{ $row['staff']->user?->email ?? '-' }}
₹{{ number_format($row['salary'], 2) }}
₹{{ number_format($row['per_day_rate'], 2) }}/day
₹{{ number_format($row['net_payable'], 2) }}
{{ number_format($row['present_equivalent'], 1) }}/{{ $row['working_days_count'] }} days

Advance is managed from the separate Advance menu. This sheet only saves payroll status. @unless($canManagePayroll) You have view-only access. @endunless

@if($canManagePayroll) @else @endif