@if (count($other_tyre_report) >= 1)
@foreach($other_tyre_report as $key => $ttr)
@if ($key % 3 == 0)
@endif
{!! Form::text('other_tyre_nos[]',$ttr->serial_number,['style'=>'width:90px;']) !!}{!! Form::select('other_tyre_status[]',['good'=>'Good','damage'=>'Damage'],$ttr->status, ["placeholder"=>"Select Status"]) !!} |
@endforeach
@else
No Data Found |
@endif