Files
bogazici-api/app/Enums/SettingType.php
2026-03-27 10:41:54 +03:00

16 lines
274 B
PHP

<?php
namespace App\Enums;
enum SettingType: string
{
case Text = 'text';
case Textarea = 'textarea';
case Image = 'image';
case Boolean = 'boolean';
case Json = 'json';
case Richtext = 'richtext';
case Url = 'url';
case Color = 'color';
}