@extends('layouts.master') @section('title', __('index.salary_tds') ) @section('sub_page',__('index.lists')) @section('page') {{ __('index.salary_tds') }} @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.payrollSetting.common.breadcrumb')
@include('admin.payrollSetting.common.setting_menu')
@can('salary_tds') {{ __('index.add_salary_tds') }} @endcan
{{ __('index.salary_tds_detail_for_single') }}
@forelse($singleSalaryTDS as $key => $value) @empty @endforelse
# {{ __('index.annual_salary_from') }} {{ __('index.annual_salary_to') }} {{ __('index.tds') }} {{ __('index.status') }} {{ __('index.action') }}
{{++$key}} {{number_format($value->annual_salary_from)}} {{number_format($value->annual_salary_to)}} {{$value->tds_in_percent}}
    @can('salary_tds')
  • @endcan

{{ __('index.no_records_found') }}

{{ __('index.salary_tds_detail_for_married') }}
@forelse($marriedSalaryTDS as $key => $value) @can('salary_tds') @endcan @empty @endforelse
# {{ __('index.annual_salary_from') }} {{ __('index.annual_salary_to') }} {{ __('index.tds') }} {{ __('index.status') }} {{ __('index.action') }}
{{++$key}} {{number_format($value->annual_salary_from)}} {{number_format($value->annual_salary_to)}} {{$value->tds_in_percent}}

{{ __('index.no_records_found') }}

@endsection @section('scripts') @include('admin.payrollSetting.salaryTDS.common.scripts') @endsection