Laravel 4查询中的Where子句

时间:2016-06-02 13:22:20

标签: php laravel-4

可能是一件非常容易的事情,但是因为我在Laravel中真的很新,MVC框架无法解决这个问题。

目前我在主页上展示产品的来源。现在我想在查询中添加public function index() { $products = Product::paginate(15); return View::make('site.index', [ 'products' => $products ]); } 子句...但我无法找到查询..我在models/Product.php中的内容是

class Product extends Eloquent {
    protected $table = 'products';
    protected $primaryKey = 'product_id';

    public $timestamps = false;
}

WHERE cat_id = 1这个

const Addresses = () => {
  const addressElement = () => {
    return  <TextInput
      name="addressLine"
     />;
  };
  const addressElement2 = () => {
    return  <TextInput
      name="addressLine2"
     />;
  };
  let address = addressElement1 + addressElement2;
  return (
    <div>
      address
    </div>);
};

我应该把[object Object][object Object]; ......

放在哪里

1 个答案:

答案 0 :(得分:0)

你需要写,

$products = Product::where('cat_id','=','1')->paginate(15);

请参阅this link

希望它能帮到你:-)