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

18 lines
364 B
PHP

<?php
namespace App\Enums;
enum SettingGroup: string
{
case General = 'general';
case Contact = 'contact';
case Maps = 'maps';
case Social = 'social';
case Seo = 'seo';
case Analytics = 'analytics';
case Header = 'header';
case Footer = 'footer';
case Integrations = 'integrations';
case InfoSections = 'info_sections';
}