You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/database/seeds/DatabaseSeeder.php

24 lines
520 B

6 years ago
<?php
4 years ago
namespace Database\Seeders;
6 years ago
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
2 years ago
$this->call(CoreSeeder::class);
$this->call(CommonSeeder::class);
$this->call(CRMSeeder::class);
$this->call(ProductSeeder::class);
$this->call(StoreSeeder::class);
$this->call(ServiceSeeder::class);
$this->call(FinanceSeeder::class);
6 years ago
}
}