本文整理匯總了PHP中app\models\Product::count方法的典型用法代碼示例。如果您正苦於以下問題:PHP Product::count方法的具體用法?PHP Product::count怎麽用?PHP Product::count使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\models\Product
的用法示例。
在下文中一共展示了Product::count方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: run
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$totalProd = \App\Models\Product::count();
for ($i = 1; $i <= $totalProd; $i++) {
$from = $this->imageGeneratorUrl . '?random=' . $i;
$to = public_path() . $this->destination . "/{$i}.jpg";
echo "Loading image {$i} \n";
copy($from, $to);
}
}
示例2: index
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index(Region $region, TrainRoad $trainRoad, Stantion $stantion)
{
$regionsCount = $region->count();
$tRoadsCount = $trainRoad->count();
$stationsCount = $stantion->count();
$condCount = Condition::count();
$productsCount = Product::count();
$servicesCount = Service::count();
$catCount = Category::count();
$statusesCount = Status::count();
$serviceStatusesCount = ServiceStatus::count();
$newOrdersCount = Order::where('is_new', 1)->count();
$newServiceOrdersCount = ServiceOrder::where('is_new', 1)->count();
$customers = Firm::where('accountant_fio', null)->get();
return view('admin.adminArea', ['regionsCount' => $regionsCount, 'tRoadsCount' => $tRoadsCount, 'stationsCount' => $stationsCount, 'condCount' => $condCount, 'catCount' => $catCount, 'productsCount' => $productsCount, 'servicesCount' => $servicesCount, 'statusesCount' => $statusesCount, 'newOrdersCount' => $newOrdersCount, 'serviceStatusesCount' => $serviceStatusesCount, 'newServiceOrdersCount' => $newServiceOrdersCount, 'customers' => $customers]);
}
示例3: GenerateFake
public static function GenerateFake($faker)
{
return ['pack_id' => $faker->numberBetween($min = 1, $max = Pack::count()), 'product_id' => $faker->numberBetween($min = 1, $max = Product::count())];
}