. */ declare(strict_types=1); namespace Database\Seeders; use Illuminate\Database\Seeder; /** * Class DatabaseSeeder. */ class DatabaseSeeder extends Seeder { /** * Run the database seeds. */ public function run() { $this->call(AccountTypeSeeder::class); $this->call(TransactionCurrencySeeder::class); $this->call(TransactionTypeSeeder::class); $this->call(PermissionSeeder::class); $this->call(LinkTypeSeeder::class); $this->call(ConfigSeeder::class); $this->call(UserRoleSeeder::class); $this->call(ExchangeRateSeeder::class); } }