finished the upgrade to filament 4. completely revamped the frontend with codex, now it looks great!

This commit is contained in:
2025-11-13 17:42:43 +01:00
parent f59fda588b
commit b311188bc1
138 changed files with 5440 additions and 4105 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace App\Settings;
use Spatie\LaravelSettings\Settings;
class GeneralSettings extends Settings
{
public string $gallery_heading = 'Style Gallery';
public int $new_image_timespan_minutes = 60;
public int $image_refresh_interval = 30_000;
public int $max_number_of_copies = 3;
public bool $show_print_button = true;
public ?string $selected_printer = null;
public ?string $custom_printer_address = null;
public ?int $default_style_id = null;
public static function group(): string
{
return 'general';
}
}