27 lines
573 B
PHP
27 lines
573 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Str;
|
|
use bfinlay\SpreadsheetSeeder\SpreadsheetSeeder;
|
|
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
//$this->call(UsersTableSeeder::class);
|
|
//$this->call(ContentsTableSeeder::class);
|
|
//$this->call(ProjectsTableSeeder::class);
|
|
$this->call([
|
|
SpreadsheetSeeder::class,
|
|
]);
|
|
}
|
|
}
|