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

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

@if (count($employees)>0)
@csrf
@php $i=1; @endphp @foreach ($employees as $employee ) @endforeach
{{__('obs.sl')}} {{__('obs.code')}} {{__('obs.name')}} {{__('obs.department')}} {{__('obs.designation')}} {{__('obs.date')}} {{__('obs.type')}}
{{$i++}} {{$employee->emp_code}} {{$employee->emp_name}} {{$employee->fetch_department ? $employee->fetch_department->name : null}} {{$employee->fetch_designation ? $employee->fetch_designation->name : null}}
@endif
@endsection @section('script') @endsection