@extends('admin.layout.master') @section('content') @section('custom_style') @endsection
{{ __('obs.late') }} {{ __('obs.amount') }}
@if (count($employees) > 0)
@include('payroll.includes.report_print_excel_button')
@endif
@if (count($employees) > 0) @php $i=1; @endphp
@foreach (collect($employees)->chunk(30) as $chunk_data)
{!! $print['head'] !!} @php $title = __('obs.late') . ' ' . __('obs.amount'); @endphp @include('payroll.report_header', [ 'title' => $title, 'text_align' => 'text-center', ])
@foreach ($chunk_data as $data) @endforeach
{{ __('obs.sl') }} {{ __('obs.code') }} {{ __('obs.name') }} {{ __('obs.designation') }} {{ __('obs.basic') }} {{ __('obs.late') }} {{ __('obs.days') }} {{ __('obs.late') }} {{ __('obs.hours') }} {{ __('obs.amount') }}
{{ $i++ }} {{ $data['employee']->emp_code }} {{ $data['employee']->emp_name }} {{ $data['employee']->fetch_designation->name }} {{$data['basic_salary']}} {{$data['late_days']}} {{$data['late_hours']}} {{$data['late_amount']}}
@endforeach
@else @if (request()->get('search') != null)

{{ __('obs.no_data_found') }}

@endif @endif @endsection @section('script') @include('payroll.hrm_script') @endsection