• File: DatabaseSeeder.php
  • Full Path: /var/www/amparoapi/database/seeders/DatabaseSeeder.php
  • Date Modified: 10/28/2021 4:10 PM
  • File size: 739 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Database\Seeders;

use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    /**
     * Seed the application's database.
     *
     * @return void
     */
    public function run()
    {
        // \App\Models\User::factory(10)->create();
        $this->call(UsersTableSeeder::class);
        $this->call(CardTypesTableSeeder::class);
        $this->call(AccountTypesTableSeeder::class);
        $this->call(CompaniesTableSeeder::class);
        $this->call(CustomerAccountsTableSeeder::class);
        $this->call(CustomerCardsTableSeeder::class);
        $this->call(MerchantsTableSeeder::class);
        $this->call(StoresTableSeeder::class);
        $this->call(OperatorsTableSeeder::class);
    }
}