@extends('layouts.app') @section('title', 'Payroll Settings') @section('breadcrumb') @endsection @push('styles') @endpush @section('content') @include('settings._tabs', ['active' => 'payroll']) @if(session('success'))
{{ session('success') }}
@endif
{{-- Payroll Module --}}
Payroll Module

Turn on the full payroll module for this company. When off, only the Employees list is available so you can still maintain employee records.

@csrf @method('PUT')
Shows the Payroll menu (Employees, Departments, Designations, Projects, Branches, Salary Components, Payroll Sheet, Payroll Journal, Pay Slip, Bank Transfer Letter, etc.) and moves Employees under it. Off by default for new companies.
{{-- Salary Tax Calculation --}}
Salary Tax Calculation

Rules used to calculate income tax on salaries. Update the boxed values whenever the Government revises them.

@csrf @method('PUT')
Non-Taxable Income Limit for Salaried Employees
/ of Gross Income or Whichever is lower.
Tax Calculation Slabs
@foreach($taxSlabs as $i => $slab) @endforeach
Slab Currency Amount Tax Rate %
{{ $slab['label'] }} @if($slab['label'] === 'Rest') Rest amount @else @endif @if($slab['label'] !== 'First' && $slab['label'] !== 'Rest') @endif
Investment Allowance (on Invested Amount)

Eligible Investment = lower of (% of Total Income), Actual Investment Amount, and Maximum Allowable Limit. Tax Rebate = Eligible Investment × Rebate Rate.

%
%
@csrf
{{-- Salary Transfer Letter --}}
Header and Footer for Salary Transfer Letter

Compose the header and footer that will appear on the Salary Transfer Letter. Use the toolbar to change font, size, color, bold and italic.

@csrf @method('PUT')
{!! $settings['salary_transfer_letter_header'] !!}
{!! $settings['salary_transfer_letter_footer'] !!}
@endsection @push('scripts') @endpush