model->where($where)->orderBy('list_order', 'desc')->orderBy('created_at', 'desc')->get();
if ($res->toArray()) {
foreach ($res as $k => $v) {
if ($v->tit_b=="1") {
$res[$k]->title ="".$v->tit_b."";
}
if ($v->tit_color != '#000000') {
//$res[$k]->title="tit_color}}\">".$res[$k]->title."";
$res[$k]->title=''.$res[$k]->title.'';
}
$res[$k]->file_url = substr($v->file_url, 0, 7)=="http://"?$v->file_url:upload_asset($v->file_url);
}
}
return $res;
}
}