Sử dụng Eloquent(ORM) trong laravel để lấy dữ liệu từ database.
Lấy tất cả các sản phẩm có status = 1
// Sql
Select * from products where status = 1;
// ORM
Product::where(['status' => 1])->get();
Product::with(['transactions'])->where(['status' => 1])->get();