Initialized fresh Laravel 12 with dependencies in inertia-vue-refresh branch

This commit is contained in:
2025-09-06 11:01:29 +02:00
parent 2ed84c2b6a
commit 6895316fbb
79 changed files with 17263 additions and 32 deletions

View File

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