@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 Amount No. of installment Installment ammount Purpose Note Date Amount Due Status @foreach ($loan_history as $lh) {{$lh->application_date}} {{$lh->amount}} {{$lh->amount - $lh->total_installment_amount}} Active @endforeach @endsection @section('script') @endsection