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

Default Quotation

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