mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-22 08:13:11 +01:00
21 lines
376 B
PHP
21 lines
376 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Seeders;
|
||
|
|
||
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class DatabaseSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Seed the application's database.
|
||
|
*/
|
||
|
public function run(): void
|
||
|
{
|
||
|
//$this->call([
|
||
|
// DemoSeeder::class,
|
||
|
// TestingSeeder::class
|
||
|
//]);
|
||
|
}
|
||
|
}
|