Files
hoshal-market/database/seeders/DatabaseSeeder.php
Mekan1206 21dadc7eac Update CategoryForm to use Select for icon selection and modify DatabaseSeeder to comment out DemoSeeder call
- Replaced TextInput for 'icon' with a searchable Select input featuring various icon options.
- Commented out the call to DemoSeeder in DatabaseSeeder to prevent execution during seeding.
2026-06-04 22:46:45 +05:00

32 lines
712 B
PHP

<?php
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Hash;
class DatabaseSeeder extends Seeder
{
use WithoutModelEvents;
/**
* Seed the application's database.
*/
public function run(): void
{
// User::factory(10)->create();
if (User::where('email', 'admin@example.com')->doesntExist()) {
User::factory()->create([
'name' => 'Admin',
'email' => 'admin@example.com',
'password' => Hash::make('password'),
]);
}
// $this->call(DemoSeeder::class);
}
}