Начальный коммит: рабочая версия с исправленной авторизацией

This commit is contained in:
root
2026-01-11 19:15:02 +00:00
commit 2d98209ce1
206 changed files with 20957 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
<<<<<<< HEAD
=======
use WithoutModelEvents;
>>>>>>> origin/main
/**
* Seed the application's database.
*/
public function run(): void
{
<<<<<<< HEAD
$this->call(ComponentSeeder::class);
=======
>>>>>>> origin/main
// User::factory(10)->create();
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
}
}