first commit
This commit is contained in:
26
database/seeders/DatabaseSeeder.php
Normal file
26
database/seeders/DatabaseSeeder.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
// \App\Models\User::factory(10)->create();
|
||||
$this->call(PermissionSeeder::class);
|
||||
$this->call(RoleSeeder::class);
|
||||
$this->call(UsersTableSeeder::class);
|
||||
$this->call(CampaignSeeder::class);
|
||||
$this->call(QualificationSeeder::class);
|
||||
$this->call(TestPreparationSeeder::class);
|
||||
$this->call(SettingsSeeder::class);
|
||||
$this->call(LeadCategorySeeder::class);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user