本文整理汇总了PHP中app\Product::leftJoin方法的典型用法代码示例。如果您正苦于以下问题:PHP Product::leftJoin方法的具体用法?PHP Product::leftJoin怎么用?PHP Product::leftJoin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Product
的用法示例。
在下文中一共展示了Product::leftJoin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sort
/**
* 0 = A to Z
* 1 = Z to A
* 2 = Stock Asc
* 3 = Stock desc
* 4 = Show out of stock only
*
* @param $sorttype
* @return $this
*/
public function sort($sorttype)
{
Session::put("sort_type", $sorttype);
$product = Product::leftJoin('inventories', 'products.id', '=', 'inventories.product_id');
$products = $this->sortInventory($product, $sorttype);
return view('dashboard/inventory')->with('products', $products->paginate(20))->with('sorttype', $sorttype);
}
示例2: searchProdctByCodeWidthDiscount
/**
* Search product from POS
* @param string $code
*/
public function searchProdctByCodeWidthDiscount()
{
$code = Input::get('codeNumber');
$customer_id = Input::get('customer_id');
$products = Product::leftJoin('pricing_rules', function ($join) use($customer_id) {
$join->on('pricing_rules.product_id', '=', 'products.id')->where('pricing_rules.customer_id', "=", $customer_id);
})->where('products.is_active', 1)->where('code', $code)->first();
return Response::json($products);
}