@php $transaction_types = []; if(in_array($contact->type, ['both', 'supplier'])){ $transaction_types['purchase'] = __('lang_v1.purchase'); $transaction_types['purchase_return'] = __('lang_v1.purchase_return'); } if(in_array($contact->type, ['both', 'customer'])){ $transaction_types['sell'] = __('sale.sale'); $transaction_types['sell_return'] = __('lang_v1.sell_return'); } $transaction_types['opening_balance'] = __('lang_v1.opening_balance'); @endphp
{!! Form::label('ledger_date_range', __('report.date_range') . ':') !!} {!! Form::text('ledger_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
{!! Form::label('ledger_location', __('purchase.business_location') . ':') !!} {!! Form::select('ledger_location', $business_locations, null , ['class' => 'form-control select2', 'id' => 'ledger_location']); !!}