根据查询结果显示不同的Div

Here what I got in view

enter image description here

I want to show it as Separate divs based on vendor name

enter image description here

How can i Group the vandor names and Show in different divs ?

I don't know how the data is being stored/retrieved but here is how I might do such sorting - assuming the variable $rows is set contains an associative array of all rows (similar to the results of a basic database query) and assuming "vendor" is the column name for the vendors (TSZ, TSR, etc), "sku" is the name of the SKU column, and "store_price" is the name of the store price column:

<?php

$vendorData = [];

foreach( $rows as $row ) {
    if( !isset($vendorData[$row['vendor']]) ) {
        $vendorData[$row['vendor']] = '';
    }
    $vendorData[$row['vendor']] .= '<div class="sku">' .
        $row['sku'] . '</div>' .
        '<div class="price">' . $row['store_price'] . '</div>';
}

foreach( $vendorData as $vendorName => $vendorHTML ) {
    echo '<div id="' . $vendorName . '" class="vendor">' .
        '<h3 class="name">' . $vendorName . '</h3>' .
        '<div class="data">' . $vendorHTML . '</div></div>';
}

?>

Here is thing what you need:-

$newDataRow = []
foreach($dataRows as $dataItemRow):
  $newDataRow[$dataRows['vendor']][] = $dataItemRow;
endforeach;
$op = '';
foreach($newDataRow as $vandorName => $vandorItemData):
  $op .= '<div class="vendor_item_group">';
  $op .= '<div class="vendor_name">'.$vandorName.'</div>';
  $op .= '<div class="item_group">';
  foreach($vandorItemData as $record):
  $op .= '<span>'.$record['sku'].'</span>';
  $op .= '<span>'.$record['price'].'</span>';
  endforeach;
  $op .='</div>';

  $op .= '</div>';
endforeach;

echo $op;

Output Should be like this:-

TSZ       TSR
TSZ K377  TSR319
2300      2250
          TSR319
           2300