@extends('layouts.app') @section('content')

Payroll Record Details

View complete payroll information

Employee Information
{{ $payroll->check_number }}
{{ $payroll->full_name }}
{{ $payroll->account_number ?? 'N/A' }}
{{ $payroll->bank_name ?? 'N/A' }}

Salary Breakdown
UGX {{ number_format($payroll->basic_salary, 0) }}
UGX {{ number_format($payroll->allowance, 0) }}
UGX {{ number_format($payroll->gross_amount, 0) }}
UGX {{ number_format($payroll->net_amount, 0) }}

{{ $payroll->created_at->format('d M Y, H:i A') }}
{{ $payroll->updated_at->format('d M Y, H:i A') }}
@push('styles') @endpush @endsection