22 lines
442 B
PHP
22 lines
442 B
PHP
<?php
|
|
|
|
namespace Sarga\Shop\Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(SLocalesTableSeeder::class);
|
|
$this->call(SCurrencyTableSeeder::class);
|
|
$this->call(DemoCategoryTableSeeder::class);
|
|
$this->call(ChannelTableSeeder::class);
|
|
|
|
}
|
|
} |