| Supplier | Fabric Content | Fabric Width | Fabric Weight | Description | Fabric Type | Consumption | Unit | Unit Price | Total Price | Action |
|---|---|---|---|---|---|---|---|---|---|---|
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::select('supplier_id1',$repository->suppliers(),$cost_breakdown_fabric ? $cost_breakdown_fabric->supplier_id :null,['id'=>'supplier_id1','class'=>'form-control','placeholder'=>'Select Supplier']) }}
@if($errors->has('supplier_id1'))
{{ $errors->first('supplier_id1') }}
@endif
|
{{--{{dd($cost_breakdown_fabric)}}--}}
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('fabric_content1',$cost_breakdown_fabric ? $cost_breakdown_fabric->fabric_content :null,['id'=>'fabric_content1','class'=>'form-control','style'=>'height:70px;width:325px','placeholder'=>'Fabric Content']) }}
@if($errors->has('fabric_content1'))
{{ $errors->first('fabric_content1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('fabric_width1',$cost_breakdown_fabric ? $cost_breakdown_fabric->fabric_width :null,['id'=>'fabric_width1','class'=>'form-control','placeholder'=>'Fabric Width']) }}
@if($errors->has('fabric_width1'))
{{ $errors->first('fabric_width1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('fabric_weight1',$cost_breakdown_fabric ? $cost_breakdown_fabric->fabric_weight :null,['id'=>'fabric_weight1','class'=>'form-control','placeholder'=>'Fabric Weight']) }}
@if($errors->has('fabric_weight1'))
{{ $errors->first('fabric_weight1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('fabric_description1',$cost_breakdown_fabric ? $cost_breakdown_fabric->fabric_content :null,['id'=>'fabric_description1','class'=>'form-control','placeholder'=>'Description']) }}
@if($errors->has('fabric_description1'))
{{ $errors->first('fabric_description1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::select('fabric_id1',$repository->fabrics(),$cost_breakdown_fabric ? $cost_breakdown_fabric->fabric_id :null,['id'=>'fabric_id1','class'=>'form-control','placeholder'=>'Select Fabric']) }}
@if($errors->has('fabric_id1'))
{{ $errors->first('fabric_id1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('fabric_consumption1',$cost_breakdown_fabric ? $cost_breakdown_fabric->fabric_consumption :null,['id'=>'fabric_consumption1','class'=>'form-control ','placeholder'=>'Consumption (mtr/yd/kg)']) }}
@if($errors->has('fabric_consumption1'))
{{ $errors->first('fabric_consumption1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::select('unit_id1',$repository->units(),$cost_breakdown_fabric ? $cost_breakdown_fabric->unit_id :null,['id'=>'unit_id1','class'=>'form-control','placeholder'=>'Select Unit']) }}
@if($errors->has('unit_id1'))
{{ $errors->first('unit_id1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('unit_price1',$cost_breakdown_fabric ? $cost_breakdown_fabric->unit_price :null,['id'=>'unit_price1','class'=>'form-control','placeholder'=>'Unit Price/mtr ']) }}
@if($errors->has('unit_price'))
{{ $errors->first('unit_price1') }}
@endif
|
{{--{{ Form::label('','Unit : ') }}--}}
{{ Form::text('fabric_cost1',$cost_breakdown_fabric ? $cost_breakdown_fabric->fabric_cost :null,['id'=>'fabric_cost1','class'=>'form-control last_salary','placeholder'=>'Appointed Trims Cost US$ With DZN ']) }}
@if($errors->has('fabric_cost1'))
{{ $errors->first('fabric_cost1') }}
@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'=>'addRow()']) }} |