Expand .gitignore for Laravel, update README with one-command setup, simplify env configs

This commit is contained in:
2026-03-09 03:48:40 +02:00
parent 17dbdad28b
commit c5260e652b
144 changed files with 16041 additions and 1709 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',
]);
}
}