@extends('layouts.master') @section('title',__('index.overtime')) @section('sub_page',__('index.lists')) @section('page') {{ __('index.overtime') }} @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.payrollSetting.common.breadcrumb')
@include('admin.payrollSetting.common.setting_menu')
@can('overtime_setting') @endcan @forelse($overTimeData as $ot) @can('overtime_setting') @endcan @empty @endforelse
# {{ __('index.payroll_type') }} {{ __('index.title') }} {{ __('index.max_daily_ot') }} {{ __('index.pay_percent') }} {{ __('index.is_active') }}{{ __('index.action') }}
{{ $loop->iteration }} {{ ucfirst($ot->payroll_type) }} {{ $ot->title ?? $ot->id }}
{{ __('index.employee_count') }} : {{ ($ot->ot_employees_count) }}
{{ $ot->max_daily_ot_hours }} {{ __('index.hour') }} {{ $ot->overtime_pay_rate ? $currency . $ot->overtime_pay_rate : $ot->pay_percent. '%' }}

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

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