19 lines
270 B
PHP
Executable File
19 lines
270 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call([
|
|
TagsTableSeeder::class
|
|
]);
|
|
}
|
|
}
|