44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
use WithoutModelEvents;
|
|
|
|
/**
|
|
* Seed the application's database.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
$this->call([
|
|
SettingsSeeder::class,
|
|
RolesTableSeeder::class,
|
|
BannerTableSeeder::class,
|
|
CarouselTableSeeder::class,
|
|
UserTableSeeder::class,
|
|
ChannelTableSeeder::class,
|
|
PaymentTypeTableSeeder::class,
|
|
ProvinceTableSeeder::class,
|
|
BrandTableSeeder::class,
|
|
ProductTableSeeder::class,
|
|
PostBranchTableSeeder::class,
|
|
InventoriesTableSeeder::class,
|
|
CategoryTableSeeder::class,
|
|
CollectionTableSeeder::class,
|
|
AttributeTableSeeder::class,
|
|
ContactUsTableSeeder::class,
|
|
LegalPageTableSeeder::class,
|
|
ReviewTableSeeder::class,
|
|
NewsletterTableSeeder::class,
|
|
CartItemTableSeeder::class,
|
|
FavouriteTableSeeder::class,
|
|
MediaTableSeeder::class,
|
|
ProductHasRelationsTable::class,
|
|
]);
|
|
}
|
|
}
|