finish database, start controller
Build / Build-image (push) Failing after 8s

This commit is contained in:
2026-08-09 01:54:47 +02:00
parent 7bb26eeb43
commit c1e8daacff
7 changed files with 154 additions and 2 deletions
+4 -2
View File
@@ -3,6 +3,7 @@
namespace Database\Seeders;
use App\Models\User;
use App\Models\Tla;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
@@ -16,10 +17,11 @@ class DatabaseSeeder extends Seeder
public function run(): void
{
// User::factory(10)->create();
Tla::factory(30)->create();
/*
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
]);*/
}
}