| Supplier | Other Trims Name | Description | Required Quantity | Unit Price | Cost | Action |
|---|---|---|---|---|---|---|
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::select('provider'.$other_num,$repository->suppliers(),$pack->provider,['id'=>'provider'.$other_num,'class'=>'form-control','placeholder'=>'Select Supplier']) }}
@if($errors->has('provider'.$other_num))
{{ $errors->first('provider'.$other_num) }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::select('other_trim_id'.$other_num,$repository->otherTrims(),$pack->other_trim_id,['id'=>'other_trim_id'.$other_num,'class'=>'form-control','placeholder'=>'Select Fabric']) }}
@if($errors->has('other_trim_id'.$other_num))
{{ $errors->first('other_trim_id'.$other_num) }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('other_trim_description'.$other_num,$pack->other_trim_description,['id'=>'other_trim_description'.$other_num,'class'=>'form-control','placeholder'=>'Description']) }}
@if($errors->has('other_trim_description'.$other_num))
{{ $errors->first('other_trim_description'.$other_num) }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('qty'.$other_num,$pack->qty,['id'=>'qty'.$other_num,'class'=>'form-control ','placeholder'=>'Required quantity']) }}
@if($errors->has('qty'.$other_num))
{{ $errors->first('qty'.$other_num) }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('price'.$other_num,$pack->price,['id'=>'price'.$other_num,'class'=>'form-control','placeholder'=>'Unit Price/mtr ']) }}
@if($errors->has('price'.$other_num))
{{ $errors->first('price'.$other_num) }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('cost'.$other_num,$pack->cost,['id'=>'cost'.$other_num,'class'=>'form-control last_salary','placeholder'=>'Appointed Trims Cost US$ With DZN ']) }}
@if($errors->has('cost'.$other_num))
{{ $errors->first('cost'.$other_num) }}
@endif
|
{{ Form::button('',['class'=>'far fa-trash-alt btn btn-danger',"id"=>'remove']) }} || {{ Form::button("",['class'=>'btn btn-primary far fa-plus-square','id'=>'add_more','onclick'=>'addRow2()']) }} |