Я новичок в Laravel.
У меня есть проект Laravel 7.
У меня есть этот код:
public function getPromoProducts()
{
return $this->model->select('name', 'slug', 'products.id', 'small_description', 'promo_desc')->with(['features', 'frontImage'])->active()->leftJoin('selected_product_features', function ($join) {
$join->on('products.id', '=', 'selected_product_features.product_id');
})->where('selected_product_features.key', 'price_promo')->where('selected_product_features.description', '<>', 0)->limit(2)->get();
}
как я могу сделать добавьте к этому коду «ORDER BY RAND ()» из традиционного mysql?
Помогите, пожалуйста