27 lines
709 B
PHP
27 lines
709 B
PHP
<?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,
|
|
];
|
|
}
|
|
}
|