@extends('layouts/acc_layout') @section('title', '| Daily Fund Plan') @section('content') @include('successMsg') @if ((now()->format('H:i') >= '17:00' && now()->format('H:i') <= '23:59') || $isHoliday == 1)
View Fund Demand
Daily Fund Plan
{!! Form::open(['url' => '#', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!}
{!! Form::label('branch', 'Branch:', ['class' => 'control-label col-sm-1 custom-branch-label custom-gap']) !!}
{!! Form::text('branch', $branch->nameWithCode, [ 'id' => 'branch', 'class' => 'form-control custom-gap', 'readonly', ]) !!} {!! Form::hidden('branch_id', $branch->branchId) !!}
{!! Form::label('collectionDate', 'Date:', ['class' => 'control-label ']) !!}
{!! Form::text('date', $date, ['class' => 'form-control', 'readonly']) !!}
{{-- Cash And Bank: --}}


{{--
Cash in Hand:
--}} {{-- @foreach ($vaultRegisters as $vaultRegister) --}} {{-- --}} {{-- @endforeach --}}
Cash & Bank Balance
Loan Disbursement Request (HO) DDI Request (HO)Total AmountBranch Office Payment Information
ESTIMA FUND DEMAND Balance
Cash Bank Name Loan Disbursment SAVINGS REFUND OTHERS EXP.
{!! Form::text('cashInHand', null, [ 'class' => 'form-control fixed-height', 'style' => 'text-align:right', 'id' => 'cashInHand', 'data-allow-decimal' => 'true', // New attribute for cashInHand ]) !!} {!! Form::text('cashInBank', null, [ 'class' => 'form-control fixed-height', 'style' => 'text-align:right', 'id' => 'cashInBank', 'data-allow-decimal' => 'true', // New attribute for cashInBank ]) !!} {!! Form::text('loanDisbursmentRequest', null, [ 'class' => 'form-control fixed-height', 'id' => 'loanDisbursmentRequest', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('DDIrequest', null, [ 'class' => 'form-control fixed-height', 'id' => 'DDIrequest', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('loanDisbursment', null, [ 'class' => 'form-control fixed-height', 'id' => 'loanDisbursment', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('savingsRefund', null, [ 'class' => 'form-control fixed-height', 'id' => 'savingsRefund', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('othersExp', null, [ 'class' => 'form-control fixed-height', 'id' => 'othersExp', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('estima', null, [ 'class' => 'form-control fixed-height', 'id' => 'estima', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('fundDemand', null, [ 'class' => 'form-control fixed-height', 'id' => 'fundDemand', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('balance', null, [ 'class' => 'form-control fixed-height', 'readonly', 'style' => 'text-align:right', 'id' => 'balance', ]) !!}
'form-control', 'readonly', 'id' => 'balance']) !!}>


{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@else

Your Fund Plan time is during 5PM to 12 AM

@endif @endsection