| Buyer | Style | Gmnts Size | Item | Item Code | Quality | Gmnts Qty | With Percentage(%) | Booking Qty. | Remarks | Action |
|---|---|---|---|---|---|---|---|---|---|---|
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('buyer1',null,['id'=>'buyer1','class'=>'form-control','placeholder'=>'Buyer']) }}
@if($errors->has('buyer1'))
{{ $errors->first('buyer1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('style1',null,['id'=>'style1','class'=>'form-control','placeholder'=>'style']) }}
@if($errors->has('style1'))
{{ $errors->first('style1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('gmnts_size1',null,['id'=>'gmnts_size1','class'=>'form-control','placeholder'=>'Size']) }}
@if($errors->has('gmnts_size1'))
{{ $errors->first('gmnts_size1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('hanger_item1',null,['id'=>'hanger_item1','class'=>'form-control','placeholder'=>'Item']) }}
@if($errors->has('hanger_item1'))
{{ $errors->first('hanger_item1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('item_code1',null,['id'=>'item_code1','class'=>'form-control','placeholder'=>'Item Code']) }}
@if($errors->has('item_code1'))
{{ $errors->first('item_code1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('quality1',null,['id'=>'quality1','class'=>'form-control','placeholder'=>'Quality']) }}
@if($errors->has('quality1'))
{{ $errors->first('quality1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('gmnts_qty1',null,['id'=>'gmnts_qty1','class'=>'form-control','placeholder'=>'Gmnts Qty']) }}
@if($errors->has('gmnts_qty1'))
{{ $errors->first('gmnts_qty1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('percentage1',null,['id'=>'percentage1','onKeyup'=>'qty_calculate()','class'=>'form-control','placeholder'=>'Percentage']) }}
@if($errors->has('percentage1'))
{{ $errors->first('percentage1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('book_qty1',null,['id'=>'book_qty1','class'=>'form-control','placeholder'=>'Book Qty.']) }}
@if($errors->has('book_qty1'))
{{ $errors->first('book_qty1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('remarks1',null,['id'=>'remarks1','class'=>'form-control','placeholder'=>'Remarks']) }}
@if($errors->has('remarks1'))
{{ $errors->first('remarks1') }}
@endif
|
{{ Form::button('',['class'=>'far fa-trash-alt btn btn-danger',"id"=>'remove','onclick'=>'remove()']) }} || {{ Form::button("",['class'=>'btn btn-primary far fa-plus-square','id'=>'add_more','onclick'=>'addRow()']) }} |