mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
e8b2b8009b
# Conflicts: # Dockerfile # app/Http/Controllers/AuthController.php # app/User.php # database/factories/UserFactory.php # database/migrations/2018_04_25_084609_change_email_to_mobile_from_user.php # database/seeds/DatabaseSeeder.php # public/home.html # public/index.html # public/profile-first-setup.html # public/verify-code-number.html # public/verify-phone-number.html # routes/api.php # routes/web.php # tests/Feature/LoginTest.php # tests/Feature/RegisterTest.php
21 lines
412 B
PHP
21 lines
412 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(SoSeeder::class);
|
|
$this->call(LaratrustSeeder::class);
|
|
$this->call(UsersTableSeeder::class);
|
|
$this->call(DeliveryInfoSeeder::class);
|
|
$this->call(CompanySeeder::class);
|
|
}
|
|
}
|