@extends('layouts.default') @section('title', 'New Deposit') @section('header-links') @include('accounts.banking.header') @endsection @section('new_button') view_listDeposit List @endsection @section('content') {!! Form::open(['url' => 'banking/deposit', 'role' => 'form','enctype'=>"multipart/form-data"]) !!}
{{ Form::selectGroup('account_id', 'Deposit To', $accounts, setting('general.default_account') , ['data-live-search'=>'true','required'=>'required']) }}
{{ Form::textGroup('paid_at', 'Date', date('y-m-d'), ['id' => 'paid_at', 'class' => 'form-control', 'data-inputmask' => '\'alias\': \'yyyy-mm-dd\'']) }}
{{ Form::textGroup('memo', 'Memo', null, []) }}
{{ Form::hidden('currency_code', setting('general.default_currency') , ['id' => 'currency_code']) }}

Bank Deposit

Action Received From Account Memo Payment method Price
{!! Form::select('deposite[' . $deposite_row . '][payment]', $payment_methods, config('accounts.payment_method'),['id'=> 'payment-id-'. $deposite_row, 'class' => 'selectpicker selectpayment', 'title' => 'Select Method']) !!}
Total 0
{{ Form::fileGroup('attachment', 'Attachment') }}
{{ Form::textareaGroup('notes', 'Notes', null, ['rows'=>'1']) }}
{{ Form::saveButton('Save') }}
{!! Form::close() !!} @include('accounts.common.models.chartofaccount') @include('includes.datepicker') @endsection