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

{{__('obs.advance')}} {{__('obs.history')}}

{{__('obs.advance')}} {{__('obs.history')}}
@foreach ($advance_history as $lh) @endforeach
{{__('obs.apply')}} {{__('obs.date')}} {{__('obs.amount')}} {{__('obs.purpose')}} & {{__('obs.note')}} {{__('obs.status')}}
{{$lh->application_date}} {{$lh->amount}} {{__('obs.purpose')}}: {{$lh->purpose}}
{{__('obs.note')}}: {{$lh->note}}
{{ $lh->approve_status == 2 ? 'Active' : ($lh->approve_status == 1 ? 'Pending' : ($lh->approve_status == 3 ? 'Rejected' : 'Completed' ) )}}
@endsection