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

Create early Application

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@foreach ($earlys as $ei) @endforeach
Recent early Out History
date out time Purpose Status
{{$ei->date}} {{$ei->expected_out_time}} {{$ei->purpose}} {{ $ei->status == 1 ? 'Active' : ($ei->status == 2 ? 'rejected' : ($ei->status == 3 ? 'pending' : 'Completed' ) )}}
@endsection @section('script') @endsection