0

Hiiiii anh, em làm tính n?ng tìm ki?m t? 1 table có tên là items, em mu?n l?y ra nh?ng b?n ghi có status là publish, và title ho?c other_title có ch?a $keyword, s?p x?p theo c?t updated_subitems desc, và l?y ra t?i ?a 12 b?n ghi nh?ng ra k?t qu? ch?a ?úng l?m, anh xem giúp em v?i ?. Em dùng eloquent c?a Laravel:

$data = Item::where(‘status’, ‘publish’)->where(‘title’, ‘like’, “%{$keyword}%”)->orWhere(‘other_title’, ‘like’, “%{$keyword}%”)->orderBy(‘updated_subitems’, ‘DESC’)->limit(12)->get();

Admin Changed status to publish 30/05/2024