wip on laon orders
This commit is contained in:
30
app/Repos/System/Settings/Legal/MarriageRepo.php
Normal file
30
app/Repos/System/Settings/Legal/MarriageRepo.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repos\System\Settings\Legal;
|
||||
|
||||
class MarriageRepo
|
||||
{
|
||||
public const MARRIED = 'married';
|
||||
|
||||
public const LEGAL_MARRIAGE = 'legal_marriage';
|
||||
|
||||
public const DIVORCED = 'divorced';
|
||||
|
||||
public const WIDOW = 'WIDOW';
|
||||
|
||||
public const SINGLE = 'single';
|
||||
|
||||
/**
|
||||
* Marriage values
|
||||
*/
|
||||
public static function values(): array
|
||||
{
|
||||
return [
|
||||
self::MARRIED => __('Married'),
|
||||
self::LEGAL_MARRIAGE => __('Legal Marriage'),
|
||||
self::DIVORCED => __('Divorced'),
|
||||
self::WIDOW => __('Widow'),
|
||||
self::SINGLE => __('Single'),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user