enhanced services attachment

This commit is contained in:
Fiqh Pratama
2025-10-13 10:55:21 +07:00
parent 65d176e6b2
commit dd5dbcab8f
9 changed files with 184 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Enums;
class AttachmentTableName
{
const FORM_MEETING_SEMINAR = 'form_meeting_seminar';
const FORM_OTHERS = 'form_others';
const FORM_UP_COUNTRY = 'form_up_country';
const FORM_VEHICLE_RUNNING_COST = 'form_vehicle_running_cost';
const FORM_ENTERTAINMENT_PRESENTATION = 'form_entertainment_presentation';
/**
* Untuk validasi input atau dropdown category table_name
*/
public static function all(): array
{
return [
self::FORM_MEETING_SEMINAR,
self::FORM_OTHERS,
self::FORM_UP_COUNTRY,
self::FORM_VEHICLE_RUNNING_COST,
self::FORM_ENTERTAINMENT_PRESENTATION,
];
}
}