mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 02:58:14 -05:00
18 lines
277 B
PHP
18 lines
277 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Seeders;
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class DatabaseSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Seed the application's database.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function run()
|
||
|
{
|
||
|
// $this->call(UsersTableSeeder::class)
|
||
|
}
|
||
|
}
|