File: D:/HostingSpaces/SBogers10/investeren-ouddorp.komma.pro/workbench/komma/kms/src/Seeds/SeedAll.php
<?php
namespace Komma\Kms\Seeds;
use Illuminate\Database\Seeder;
class SeedAll extends Seeder
{
public function run()
{
$this->call('UsersTableSeeder');
$this->command->info('Kms: Users table seeded!');
$this->call('CountriesTableSeeder');
$this->command->info('Kms: Countries table seeded!');
$this->call('LanguagesTableSeeder');
$this->command->info('Kms: Languages table seeded!');
$this->call('PagesTableSeeder');
$this->command->info('Kms: Page table seeded!');
$this->call('RoutesTableSeeder');
$this->command->info('Kms: Routes table seeded!');
/* Enable this when Projects are active, or call
php artisan db:seed --class=Komma\\Kms\\Seeds\\ProjectPageTableSeeder
*/
// $this->call('ProjectPageTableSeeder');
// $this->command->info('Kms: Project page seeded!');
/* Enable this when Blog is active, or call
php artisan db:seed --class=Komma\\Kms\\Seeds\\BlogPageTableSeeder
*/
// $this->call('BlogPageTableSeeder');
// $this->command->info('Kms: Blog page seeded!');
/* Enable this when News is active, or call
php artisan db:seed --class=Komma\\Kms\\Seeds\\NewsPageTableSeeder
*/
// $this->call('NewsPageTableSeeder');
// $this->command->info('Kms: News page seeded!');
/*
* Enable this when News is active, or call
* php artisan db:seed --class=Komma\\Kms\\Seeds\\ContactPageTableSeeder
*/
}
}