- 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.
32 lines
712 B
PHP
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);
|
|
}
|
|
}
|