runware.ai connection test funktioniert, drucken dialog implementiert

This commit is contained in:
2025-08-08 10:11:56 +02:00
parent ad893b48a7
commit cfceaed08f
12 changed files with 305 additions and 82 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use App\Models\Setting;
class MaxCopiesSettingSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Setting::updateOrCreate(
['key' => 'max_number_of_copies'],
['value' => 10] // Default value
);
}
}