File: D:/HostingSpaces/SBogers10/shop.komma.nl/database/seeds/CompleteDatabaseSeeder.php
<?php
use App\seeds\CommonGroupBehaviours;
use App\Seeds\CommonShopPages;
use App\seeds\SampleCategories;
use App\seeds\CommonCoupons;
use App\seeds\SampleOrders;
use App\seeds\SampleProducts;
use App\seeds\CommonProperties;
use App\seeds\SampleShippingCosts;
use App\seeds\UserTableSeeder;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Config;
class CompleteDatabaseSeeder extends Seeder
{
/**
* Run the database seeds needed for showcasing all options and human testing.
*
* @return void
*/
public function run()
{
$this->call(UserTableSeeder::class);
$this->call(CountryTableSeeder::class);
if(!Config::get('app.multipleSites')) {
$this->call(CommonPagesSingleSite::class);
} else {
$this->call(SamplePagesMultipleSites::class);
}
$this->call(SampleShippingCosts::class);
$this->call(CommonGroupBehaviours::class);
$this->call(SampleProducts::class);
$this->call(CommonShopPages::class);
$this->call(CommonCoupons::class);
$this->call(SampleCategories::class);
$this->call(SampleOrders::class);
$this->call(CommonProperties::class);
$this->call(CommonCorrectRoutesForWildcardModelsSeeder::class);
}
}