@extends('layouts.main') @push('styles') @endpush @section('content')
| {{ __('payroll.payroll_schedule_name') }} | {{ $schedule->name }} | {{ __('payroll.created_by') }} | {{ get_full_name($schedule->created_by, 'id', 'first_name', 'last_name', 'users') }} | {{ __('payroll.created_at') }} | {{ streamline_date_time($schedule->created_at) }} |
|---|---|---|---|---|---|
| {{ __('payroll.payment_year') }} | {{ $schedule->pay_year }} | {{ __('payroll.payment_month') }} | {{ $schedule->pay_month }} | {{ __('payroll.due_date') }} | {{ streamline_date($schedule->due_date) }} |
| {{ __('payroll.salaries_expenses_account') }} | {{ $expense_accounts[$schedule->salaries_expense_account] }} | {{ __('payroll.tax_expense_account') }} | {{ $expense_accounts[$schedule->tax_expense_account] }} | {{ __('payroll.social_security_expense_account') }} | {{ $expense_accounts[$schedule->social_security_expense_account] }} |
| {{ __('payroll.salaries_payable_account') }} | {{ $payable_accounts[$schedule->salaries_payable_account] }} | {{ __('payroll.tax_payable_account') }} | {{ $payable_accounts[$schedule->tax_payable_account] }} | {{ __('payroll.social_security_payable_account') }} | {{ $payable_accounts[$schedule->social_security_payable_account] }} |
| {{ __('payroll.memo') }} | {{ $schedule->memo }} | ||||
| {{ __('payroll.employee_name') }} | {{ __('payroll.payroll_category') }} | {{ __('payroll.basic_pay') }} | {{ __('payroll.allowances') }} | {{ __('payroll.gross_pay') }} | {{ __('payroll.tax_amount') }} | {{ __('payroll.social_security_amount') }} | {{ __('payroll.deductions') }} | {{ __('payroll.total_deductions') }} | {{ __('payroll.net_pay') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $patient->first_name . ' ' . $patient->last_name }} ({{ $patient->number }}) | {{ $payroll_categories[$employee->payroll_category] }} | {{ Form::hidden('payroll_category[]', $employee->payroll_category) }}{{ ugandan_shillings($basic_pay_arr[$i]) }} | {{ ugandan_shillings($allowances_arr[$i]) }} | {{ ugandan_shillings($gross_pay_arr[$i]) }} | {{ ugandan_shillings($tax_amount_arr[$i]) }} | {{ ugandan_shillings($social_security_amount_arr[$i]) }} | {{ ugandan_shillings($deductions_arr[$i]) }} | {{ ugandan_shillings($total_deductions_arr[$i]) }} | {{ ugandan_shillings($net_pay_arr[$i]) }} |
| TOTALS | {{ ugandan_shillings($basic_pay_total) }} | {{ ugandan_shillings($allowances_total) }} | {{ ugandan_shillings($gross_pay_total) }} | {{ ugandan_shillings($tax_amount_total) }} | {{ ugandan_shillings($social_security_amount_total) }} | {{ ugandan_shillings($deductions_total) }} | {{ ugandan_shillings($total_deductions_total) }} | {{ ugandan_shillings($net_pay_total) }} |