@extends('payroll.employee_frontend.layouts.employee') @section('custom_style') @endsection @section('content')

{{ __('obs.ot') }} {{ __('obs.day') }} {{ __('obs.request') }} {{ __('obs.create') }}

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{ __('obs.ot') }} {{ __('obs.day') }} {{ __('obs.request') }} {{ __('obs.list') }}
@php $sl=1; @endphp @foreach ($ot_day_requests as $list) @endforeach
{{ __('obs.sl') }} {{__('obs.date')}} {{__('obs.type')}} {{__('obs.status')}}
{{$sl++}} {{date('d-m-Y',strtotime($list->date))}} @if ($list->type ==1) Adjust with Salary @elseif ($list->type ==2) Adjust with Leave @endif @if ($list->is_verified ==1) Pending @elseif($list->is_verified ==2) @if($list->type ==2 && $list->adjust_status == 1) Not Adjusted @elseif($list->type ==2 && $list->adjust_status == 2) Adjusted @else Verified @endif @endif
@endsection @section('script') @endsection