AMS_Backend/app/Helpers/cart_helper.php
2025-11-06 13:41:06 +08:00

14 lines
354 B
PHP

<?php
if (!function_exists('getColumnValues')) {
function getColumnValues($model, string $whereColumn, $whereValue, string $columnToExtract)
{
$data = $model->where($whereColumn, $whereValue)->findAll();
if($data){
return array_column($data, $columnToExtract);
}else{
return [];
}
}
}