mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 17:48:36 +00:00
21 lines
576 B
PHP
21 lines
576 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
\App\Models\User::factory(1)->create();//Disable demo first user creation
|
|
$this->call(SettingsSeeder::class);
|
|
$this->call(ProvidersSeeder::class);
|
|
$this->call(LocationsSeeder::class);
|
|
$this->call(OsSeeder::class);
|
|
$this->call(LabelsSeeder::class);
|
|
//$this->call(DomainsSeeder::class);
|
|
//$this->call(ServersSeeder::class);
|
|
//$this->call(SharedSeeder::class);
|
|
}
|
|
}
|