|
{{$i}}
|
{{Form::text('prices['.$i.'][started]', $row['started'], ['class'=>'full-width'])}}
|
{{Form::text('prices['.$i.'][ended]', $row['ended'], ['class'=>'full-width'])}}
|
{{Form::checkbox('prices['.$i.'][is_gst]', 1, (isset($row['is_gst']) ? $row['is_gst']:false), ['class'=>''])}}
|
{{Form::text('prices['.$i.'][unit_price]', $row['unit_price'], ['class'=>'full-width'])}}
|
|
@php $i++; @endphp
@endforeach
|
{{$i}}
|
{{Form::text('prices['.$i.'][started]', null, ['class'=>'full-width'])}}
|
{{Form::text('prices['.$i.'][ended]', null, ['class'=>'full-width'])}}
|
{{Form::checkbox('prices['.$i.'][is_gst]', 1, (count($rows) ? false:true), ['class'=>''])}}
|
{{Form::text('prices['.$i.'][unit_price]', null, ['class'=>'full-width'])}}
|
|