php first loop of foreach code example
Example: if first php
$x = 1;
$length = count($data);
foreach($data as $value){
echo"
<button class='btn";
if($x === 1){
echo " first";
}
else if($x === $length){
echo " last";
}
$x++;
echo"
'>$value->services_name</button>
";
}