@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 Plan
Update Daily Fund Plan
{!! Form::open([ 'url' => '#', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'data-id' => $fund->id, ]) !!}
{!! 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', $vaultRegister->cashBookSum, [ --}} {!! Form::text('cashInHand', $fund->cashInHand, [ 'class' => 'form-control fixed-height', 'data-allow-decimal' => 'true', // New attribute for cashInHand // 'readonly', 'style' => 'text-align:right', 'id' => 'cashInHand', ]) !!} {{-- {!! Form::text('cashInBank', $vaultRegister->totalCashAtBankAmount, [ --}} {!! Form::text('cashInBank', $fund->cashInBank, [ 'class' => 'form-control fixed-height', // 'readonly', 'data-allow-decimal' => 'true', // New attribute for cashInHand 'style' => 'text-align:right', 'id' => 'cashInBank', ]) !!} {!! Form::text('loanDisbursmentRequest', number_format($fund->loanDisbursmentRequest), [ 'class' => 'form-control fixed-height', 'id' => 'loanDisbursmentRequest', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('DDIrequest', number_format($fund->DDIrequest), [ 'class' => 'form-control fixed-height', 'id' => 'DDIrequest', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('loanDisbursment', number_format($fund->loanDisbursment), [ 'class' => 'form-control fixed-height', 'id' => 'loanDisbursment', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('savingsRefund', number_format($fund->savingsRefund), [ 'class' => 'form-control fixed-height', 'id' => 'savingsRefund', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('othersExp', number_format($fund->othersExp), [ 'class' => 'form-control fixed-height', 'id' => 'othersExp', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('estima', number_format($fund->estima), [ 'class' => 'form-control fixed-height', 'id' => 'estima', 'style' => 'direction: rtl;', ]) !!} {!! Form::text('fundDemand', number_format($fund->fundDemand), [ '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('Update', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@else

Please Register Fund Demand Between 5 PM To 10 AM

@endif @endsection