后台图片管理支持通过图片路径名称搜索。Fixed #640

This commit is contained in:
熊孝兵
2023-03-30 09:49:01 +08:00
parent 67fc980968
commit c80b92b346

View File

@@ -65,7 +65,7 @@ class ImageController extends Controller
foreach ($words as $word) {
$builder->where('name', 'like', "%{$word}%")
->where('origin_name', 'like', "%{$word}%")
->orWhere('origin_name', 'like', "%{$word}%")
->orWhere('alias_name', 'like', "%{$word}%");
}
})->latest()->paginate(40);