@extends('layouts.master') @section('title', 'Add Loan Entry') @push('css') @endpush @section('content') @include('partials.header') @include('partials.sidebar') Add Loan Entry Loans Create Loan Entry Form @if(session('success')) {{ session('success') }} @endif @csrf Select Employee -- Select Employee -- @foreach($employees as $emp) {{ strtoupper($emp->name) }} @endforeach Loan Account Paid From (Cash/Bank) -- Select Account -- @foreach($pettyCashAccounts as $account) {{ strtoupper($account->Account_Title) }} @endforeach Loan Date Loan Amount Monthly Deduction Save Loan @push('js') @endpush @endsection