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