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

Create loan Application

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@foreach ($loan_history as $lh) @endforeach
Date Amount Due Status
{{$lh->application_date}} {{$lh->amount}} {{$lh->amount - $lh->total_installment_amount}} Active
@endsection @section('script') @endsection