CasperSecurity
<?php
namespace Database\Seeders;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(LaratrustSeeder::class);
$this->call(ModuleSeeder::class);
$this->call(FeatureSeeder::class);
$this->call(VendorTypesSeeder::class);
// $this->call(DesignationSeeder::class);
// $this->call(DepartmentSeeder::class);
// $this->call(EmployeeTypeSeeder::class);
// $this->call(SettingsCountrySeeder::class);
// $this->call(SettingsStateSeeder::class);
// $this->call(SettingsCitySeeder::class);
// $this->call(SettingsLocationSeeder::class);
// $this->call(ClientCategorySeeder::class);
// $this->call(TenderVerietySeeder::class);
// $this->call(TenderActivitySeeder::class);
// $this->call(TenderDocumentSeeder::class);
// $this->call(ClientSeeder::class);
// \App\Models\User::factory(10)->create();
// \App\Models\User::factory()->create([
// 'name' => 'Test User',
// 'email' => 'test@example.com',
// ]);
}
}