@extends('admin.layout.app') @section('title','Customer Ledger') @push('headerscript') @endpush @section('content')

Customer Ledger

{!! Form::select("customer_id", $customers, old("customer_id"), ['class'=>'form-control', 'required', 'id'=>'customer_id'] ) !!}
{!! Form::select("branch_id", \App\Http\Helpers\Helper::getBranchData(), old("branch_id"), ['class'=>'form-control' ,'id' => 'branch_id'] ) !!}
S.No. Voucher No. Date Credit Debit
{!! Form::close() !!}
@endsection @push('footerscript') {{-- --}} @endpush