@php
$business_id = request()->session()->get('user.business_id');
$business_locations = App\BusinessLocation::forDropdown($business_id);
@endphp
@if(count($business_locations) == 1)
@php
$default_location = current(array_keys($business_locations->toArray()))
@endphp
@else
@php $default_location = null; @endphp
@endif
{!! Form::open(['url' => action('POSReturnController@store'), 'method' => 'post', 'class'=>'return_form', 'id' => 'pos_return_form' ]) !!}
{!! Form::text('customer_detail', null, ['class' => 'form-control', 'placeholder' => 'ENTER THE CUSTOMER NAME/ PHONE', 'id' => 'customer_detail', 'aria-describedby'=>"basic-addon2"]); !!}
{!! Form::text('return_detail', null, ['class' => 'form-control', 'placeholder' => 'ENTER THE CUSTOMER NAME/ PHONE', 'id' => 'return_detail', 'aria-describedby'=>"basic-addon2"]); !!}
|
Product |
Quantity |
Dis. |
Unit Price |
Line Total |
{!! Form::select('return_type', ['exchange' => 'Exchange', 'refound' => 'Refund', 'other' => "Other"], ' ', ['class' => 'form-control', 'placeholder' => __('Return Reason'), 'required',
'id' => 'pos_return_type']); !!}
{!! Form::textarea('reason', null, ['class' => 'form-control', 'placeholder' => __('reason'), 'rows' => '3']); !!}
{!! Form::close() !!}