@extends('layouts.user_type.auth') @section('content')
@if(session('success')) @endif @if(session('error')) @endif
Regularization
@csrf
@csrf
@foreach($regularizationList as $rl) @endforeach
ID Emp ID Emp Name Date CheckIn - CheckOut Reporting ID Reporting Manager Status Reason Comment Created At Actions

{{ $rl->id }}

{{ $rl->employee_id }}

{{ ucfirst($rl->first_name . " " . $rl->last_name) }}

{{ $rl->date }}

{{ $rl->check_in . "-" . $rl->check_out }}

{{ $rl->reporting_manager }}

{{ ucfirst($rl->manager_first_name . " " . $rl->manager_last_name) }}

{{ $rl->status ?? 'Pending' }}
{{ Str::limit($rl->reason, 20, '...') }}
{{ $rl->reason ?? '' }}
{{ Str::limit($rl->comment, 20, '...') }}
{{ $rl->comment ?? '' }}
{{ $rl->created_at ?? 'Not Published' }} @if($rl->status != 'Approved' && $rl->status != 'Rejected')
@csrf
@endif @if($rl->status != 'Approved' && $rl->status != 'Rejected')
@csrf
@endif
@endsection