{{ Form::open(['method'=>'post', 'id'=>'default_quotation_form', 'url'=>route('set.defaultQuotation.price'), 'onsubmit'=>'return SaveDefaultQuotation(this)', 'class'=>'form-inline', 'enctype'=>"multipart/form-data"]) }}

Set Quotation Price

{{ Form::hidden('carrier_id',$carrier_id) }} {{ Form::hidden('client_id',$client_id) }}
    @foreach($packagetypes as $maintype)
  • {{ $maintype['name'] }}
  • @endforeach
@foreach($packagetypes as $maintype)
@foreach($centers as $key => $value) @endforeach @foreach(array_keys($quotations[$maintype['id']][$centers[0]['id']]) as $type) @endforeach @foreach($centers as $v) @if(isset($quotations[$maintype['id']][$v['id']])) @foreach($quotations[$maintype['id']][$v['id']] as $kk => $value) @endforeach @endif @endforeach
{{$value['name']}}
{{$type}}
{{ Form::text($maintype['id'].'_'.$v['id'].'['.$kk.']', $value, ['class' => 'form-control','style="width:65px;text-align:center;border:none;"']) }}
@endforeach
{{ Form::close() }}