本文整理汇总了PHP中app\Product::lists方法的典型用法代码示例。如果您正苦于以下问题:PHP Product::lists方法的具体用法?PHP Product::lists怎么用?PHP Product::lists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Product
的用法示例。
在下文中一共展示了Product::lists方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: edit
public function edit($id)
{
$orders = Order::with('product')->where('order_unique_id', $id)->get();
$products = Product::lists('product_name', 'id');
$title = "Edit order ( {$id})";
return view('order.edit', compact('orders', 'title', 'products', 'id'));
}
示例2: run
public function run()
{
$faker = Faker::create();
$categoriesIds = Category::lists('id')->all();
$ProductsIds = Product::lists('id')->all();
foreach (range(1, Product::count()) as $index) {
DB::table('category_product')->insert(['category_id' => $faker->randomElement($categoriesIds), 'product_id' => $index]);
}
}
示例3: edit
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return Response
*/
public function edit($id)
{
$edit = true;
//hien thi ten khach hang
$order = Order::find($id);
$transaction = Transaction::lists('id', 'id');
$product = Product::lists('name', 'id');
return view('orders.edit', compact('order', 'transaction', 'product', 'edit'));
}
示例4: create
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
$products = Product::lists('name', 'id');
$users = User::lists('name', 'id');
return view('problem.create')->with(['products' => $products, 'users' => $users]);
}