2021-06-07 15:30:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Seeders;
|
|
|
|
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
class ExampleItemsSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Seed the application's database.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
$this->call([
|
|
|
|
ProductSeeder::class,
|
|
|
|
PaypalProductSeeder::class,
|
|
|
|
ApplicationApiSeeder::class,
|
2021-06-10 15:41:47 +00:00
|
|
|
UsefulLinksSeeder::class
|
2021-06-07 15:30:19 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|