| Supplier | Trims Items | REF | Color | Description | Required QTY | Unit Price(US$) | Total Price | Action |
|---|---|---|---|---|---|---|---|---|
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::select('distributor1',$repository->suppliers(),$cost_breakdown_trim ? $cost_breakdown_trim->supplier_id :null,['id'=>'distributor1','class'=>'form-control','placeholder'=>'Select Supplier']) }}
@if($errors->has('distributor1'))
{{ $errors->first('distributor1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::select('trim_id1',$repository->trims(),$cost_breakdown_trim ? $cost_breakdown_trim->trim_id :null,['id'=>'trim_id1','class'=>'form-control','placeholder'=>'Select Trims']) }}
@if($errors->has('trim_id1'))
{{ $errors->first('trim_id1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('reference1',$cost_breakdown_trim ? $cost_breakdown_trim->reference :null,['id'=>'reference1','class'=>'form-control address','placeholder'=>'']) }}
@if($errors->has('reference1'))
{{ $errors->first('reference1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('color1',$cost_breakdown_trim ? $cost_breakdown_trim->color :null,['id'=>'color1','class'=>'form-control telNo','placeholder'=>'Color']) }}
@if($errors->has('color1'))
{{ $errors->first('color1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('trims_description1',$cost_breakdown_trim ? $cost_breakdown_trim->trims_description :null,['id'=>'trims_description1','class'=>'form-control telNo','placeholder'=>'Ex. 52895']) }}
@if($errors->has('trims_description1'))
{{ $errors->first('trims_description1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('required_qty1',$cost_breakdown_trim ? $cost_breakdown_trim->required_qty :null,['id'=>'required_qty1','class'=>'form-control ','placeholder'=>'Req. Qty']) }}
@if($errors->has('required_qty1'))
{{ $errors->first('required_qty1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('trims_price1',$cost_breakdown_trim ? $cost_breakdown_trim->trims_price :null,['id'=>'trims_price1','class'=>'form-control','placeholder'=>'Unit Price']) }}
@if($errors->has('trims_price1'))
{{ $errors->first('trims_price1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('trims_cost1',$cost_breakdown_trim ? $cost_breakdown_trim->trims_cost :null,['id'=>'trims_cost1','class'=>'form-control','placeholder'=>'Trim Cost']) }}
@if($errors->has('trims_cost1'))
{{ $errors->first('trims_cost1') }}
@endif
|
{{ Form::button('',['class'=>'far fa-trash-alt btn btn-danger',"id"=>'remove']) }} || {{ Form::button("",['class'=>'btn btn-primary far fa-plus-square','onclick'=>'addRow1()']) }} |