mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-products-api.git
synced 2026-08-19 12:24:17 +00:00
19 lines
289 B
PHP
19 lines
289 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
// $this->call('UsersTableSeeder');
|
|
|
|
factory(\App\Product::class, 50)->create();
|
|
}
|
|
}
|