<?php
use Database\Seeders\UsersTableSeeder;
use Database\Seeders\VoucherTypesTableSeeder;
use Database\Seeders\AdminsTableSeeder;
use Database\Seeders\LocationsSeeder;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
DB::transaction(function () {
// $this->call(UsersTableSeeder::class);
// $this->call(BankAccoutsTableSeeder::class)
// $this->call(AdminsTableSeeder::class);
$this->call(ImaliAccountConfigsTableSeeder::class);
$this->call(RamoActivitiesTableSeeder::class);
$this->call(LocationsSeeder::class);
$this->call(MasterAccountsTableSeeder::class);
$this->call(BankConectionsTableSeeder::class);
$this->call(VoucherTypesTableSeeder::class);
$this->call(VoucherListsTableSeeder::class);
$this->call(UserClientsTableSeeder::class);
// $this->call(MerchantAccountsTableSeeder::class);
// $this->call(MerchantContractsTableSeeder::class);
});
}
}