@extends('layout.app') @section('content') Add Income See List @csrf {{-- Name* @error('shortname') {{ $message }} @enderror --}} Name* Income Head* Select One @foreach ($incomeHead as $item) {{ $item->name }} @endforeach Invoice Number Date* {{-- Date* --}} Amount* @if (checkSettings('bank_account_deposit_from_payment') == 'enable') Bank Account (Optional) Select Bank Account (Leave empty for Cash) @if(isset($bankAccounts) && $bankAccounts->count() > 0) @foreach ($bankAccounts as $bankAccount) {{ $bankAccount->account_name }} -- {{ $bankAccount->bank_name }} @endforeach @endif If selected, income will be deposited to this bank account. @endif Attach Document* {{-- --}} Description* Save @endsection @section('ajax') @endsection