本文整理汇总了PHP中app\Product::limit方法的典型用法代码示例。如果您正苦于以下问题:PHP Product::limit方法的具体用法?PHP Product::limit怎么用?PHP Product::limit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Product
的用法示例。
在下文中一共展示了Product::limit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
public function index()
{
$products = Product::all();
$productCode = Product::limit(1)->orderBy('product_code', 'decs')->first();
if (isset($productCode->product_code)) {
$crop = substr($productCode->product_code, 4);
if ($crop < 9) {
$plus = $crop + 1;
$urutan = "JOR000" . $plus;
} elseif ($crop < 99) {
$plus = $crop + 1;
$urutan = "JOR00" . $plus;
} elseif ($crop < 999) {
$plus = $crop + 1;
$urutan = "JOR0" . $plus;
} elseif ($crop < 9999) {
$plus = $crop + 1;
$urutan = "JOR" . $plus;
} elseif ($crop >= 9999) {
$urutan = "ERROR";
}
} else {
$urutan = "JOR0001";
}
// return response()->json(array('data' => $products, 'urutan' => $urutan));
return view('admin.product')->withProducts($products)->withUrutans($urutan);
}
示例2: index
public function index()
{
$data = array('brand' => Brand::all(), 'banner' => Banner::all(), 'product' => Product::limit(9)->offset(0)->get(), 'cart' => Cart::content(), 'total' => Cart::total(), 'download' => Download::limit(3)->offset(0)->get(), 'testimoni' => Testimoni::limit(10)->offset(0)->get());
return view('front.home', compact('data'));
}
示例3: index
/**
* Show the application welcome screen to the user.
*
* @return Response
*/
public function index()
{
$products = Product::limit(3)->orderBy('created_at', 'asc')->get();
return view('main.welcome', ['products' => $products]);
}