mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-14 02:08:54 +01:00
19 lines
272 B
PHP
19 lines
272 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class DatabaseSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Seed the application's database.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function run()
|
||
|
{
|
||
|
$this->call([
|
||
|
UsersTableSeeder::class,
|
||
|
]);
|
||
|
}
|
||
|
}
|