18 lines
364 B
PHP
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';
|
|
}
|