@extends('admin.layout.master') @section('content')
@include('flash-message')

{{ __('obs.ot') }} {{ __('obs.day') }} {{ __('obs.adjust') }} {{ __('obs.summary') }}

@include('payroll.includes.report_print_excel_button')
@if (request()->has('search_true'))
@php $title = "OT Day Adjust Summary ". request()->get('date_from'). ' To ' . request()->get('date_to') ; @endphp @include('payroll.report_header', ['text_align' => 'text-center','title'=>$title]) @if (count($employees) > 0) @php $sl = 1; @endphp @foreach ($employees as $list) @endforeach @else @endif
{{ __('obs.sl') }} {{ __('obs.code') }} {{ __('obs.name') }} {{ __('obs.department') }} {{ __('obs.designation') }} {{ __('obs.total') }} {{ __('obs.ot') }} {{ __('obs.day') }} {{ __('obs.total') }} {{ __('obs.adjust') }}
{{ $sl++ }} {{ $list->emp_code }} {{ $list->emp_name }} {{ $list->fetch_department->name ?? null }} {{ $list->fetch_designation->name ?? null }} {{ $list->total_ot_days }} {{ $list->total_ot_day_adjust }}
Data Not Found
@endif
@endsection @section('script') @endsection