wip on laon orders
This commit is contained in:
36
app/Repos/System/Settings/Legal/EducationRepo.php
Normal file
36
app/Repos/System/Settings/Legal/EducationRepo.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repos\System\Settings\Legal;
|
||||
|
||||
class EducationRepo
|
||||
{
|
||||
public const SCHOOL_DROP_OUT = 'school_drop_out';
|
||||
|
||||
public const SCHOOL = 'school';
|
||||
|
||||
public const MIDDLE_SCHOOL = 'middle_school';
|
||||
|
||||
public const UNFINISHED_HIGH_EDUCATION = 'Unfinished_high_education';
|
||||
|
||||
public const HIGH_EDUCATION = 'high_education';
|
||||
|
||||
public const MASTERS = 'masters';
|
||||
|
||||
public const PHD = 'phd';
|
||||
|
||||
/**
|
||||
* Education statuses
|
||||
*/
|
||||
public static function values(): array
|
||||
{
|
||||
return [
|
||||
self::SCHOOL_DROP_OUT => __('School drop out'),
|
||||
self::SCHOOL => __('School'),
|
||||
self::MIDDLE_SCHOOL => __('Middle school'),
|
||||
self::UNFINISHED_HIGH_EDUCATION => __('Unfinished high education'),
|
||||
self::HIGH_EDUCATION => __('High education'),
|
||||
self::MASTERS => __('Masters'),
|
||||
self::PHD => __('PHD'),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user