mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-orders-api.git
synced 2026-08-19 04:24:05 +00:00
17 lines
243 B
PHP
17 lines
243 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
factory(\App\Order::class, 150)->create();
|
|
}
|
|
}
|