change path image

This commit is contained in:
2020-12-04 11:52:16 +07:00
parent df39cdf602
commit 0c9bbd3314
4 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ class CaptureLogsGrid {
public static function image() {
return function($model) {
return Html::img("/BiFace/data/uploads/face/" . $model->image, [
return Html::img("/data/uploads/face/" . $model->image, [
"class" => "img-thumbnail",
"style" => "width: 150px;height:150px;"
]);
@@ -56,7 +56,7 @@ class CaptureLogsGrid {
"style" => "cursor: pointer;",
"data" => [
"id" => $model->id,
"img" => "/BiFace/data/uploads/face/" . $model->image
"img" => "/data/uploads/face/" . $model->image
]
];
};