mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Customer;
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Xmen\StarterKit\Models\Menu;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
// \App\Models\User::factory(10)->create();
|
|
|
|
// \App\Models\User::factory()->create([
|
|
// 'name' => 'Test User',
|
|
// 'email' => 'test@example.com',
|
|
// ]);
|
|
|
|
Storage::deleteDirectory('public');
|
|
Storage::makeDirectory('public');
|
|
//seo settings
|
|
|
|
|
|
$this->call([
|
|
UserSeeder::class,
|
|
XlangSeeder::class,
|
|
CategorySeeder::class,
|
|
CatSeeder::class,
|
|
]);
|
|
if (env('NO_SEED_PRODUCT', 'false') != 'true') {
|
|
$this->call([
|
|
PostSeeder::class,
|
|
MenuSeeder::class,
|
|
PropSeeder::class,
|
|
ProductSeeder::class,
|
|
// InvoiceSeeder::class,
|
|
// SliderSeeder::class,
|
|
]);
|
|
}
|
|
|
|
$this->call([
|
|
CustomerSeeder::class,
|
|
SettingSeeder::class,
|
|
MenuSeeder::class,
|
|
]);
|
|
|
|
}
|
|
}
|