File: D:/HostingSpaces/SBogers10/sportivo.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: Shops table seeded!');
}
}