- Updated DatabaseSeeder to check for existing admin user before creation. - Modified Home view to include max-height for collection items and added filter functionality for product categories. - Introduced JavaScript for dynamic filtering of product cards based on selected categories.
32 lines
709 B
PHP
32 lines
709 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);
|
|
}
|
|
}
|