@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.all_stock_transfers')])
@slot('tool')
@endslot
@if(count($business_locations) == 1)
@php
$default_location = current(array_keys($business_locations->toArray()));
$search_disable = false;
@endphp
@else
@php $default_location = null;
$search_disable = true;
@endphp
@endif
From
{!! Form::label('location_id', __('purchase.business_location').':*') !!}
@show_tooltip(__('tooltip.purchase_location'))
{!! Form::select('location_id', $business_locations, $default_location, ['id' => 'location_from','class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'required'], $bl_attributes); !!}
| @lang('messages.date') |
@lang('purchase.ref_no') |
@lang('lang_v1.location_from') |
@lang('lang_v1.location_to') |
@lang('sale.status') |
@lang('lang_v1.shipping_charges') |
@lang('stock_adjustment.total_amount') |
@lang('purchase.additional_notes') |
@endcomponent