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

{{__('obs.create')}} {{__('obs.advance')}} {{__('obs.application')}}

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@foreach ($advance_history as $lh) @endforeach
{{__('obs.date')}} {{__('obs.ammount')}} {{__('obs.due')}} {{__('obs.status')}}
{{$lh->application_date}} {{$lh->amount}} {{$lh->amount - $lh->total_installment_amount}} {{__('obs.')}}active
@endsection @section('script') @endsection