• File: DatabaseSeeder.php
  • Full Path: /var/www/imaliapitest/database/seeds/DatabaseSeeder.php
  • Date Modified: 05/19/2025 4:29 PM
  • File size: 1.23 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?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);
        });
    }
}