misbar-backend/database/seeders/DatabaseSeeder.php
2024-09-11 12:30:47 +03:00

28 lines
663 B
PHP

<?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([AdminSeeder::class]);
$this->call([StaticInfoSeeder::class]);
$this->call([ProjectSeeder::class]);
$this->call([ContactSeeder::class]);
$this->call([RecentWorksSedder::class]);
$this->call([ServiceSeeder::class]);
$this->call([SocialMediaSeeder::class]);
$this->call([WorksSeeder::class]);
}
}