2017-12-20 10:19:36 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Created by IntelliJ IDEA.
|
|
|
|
* User: nshahzad
|
|
|
|
* Date: 12/19/17
|
|
|
|
* Time: 8:04 PM
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class EnumBase
|
|
|
|
* @package App\Models\Enums
|
|
|
|
* TODO: Implement lang translations for enum labels
|
|
|
|
*/
|
|
|
|
class EnumBase
|
|
|
|
{
|
|
|
|
protected static $labels = [];
|
2017-12-21 03:27:57 +08:00
|
|
|
protected static $adverbs = [];
|
2017-12-20 10:19:36 +08:00
|
|
|
|
|
|
|
/**
|
2017-12-21 03:27:57 +08:00
|
|
|
* Return the label, try to return the translated version as well
|
2017-12-20 10:19:36 +08:00
|
|
|
* @param $value
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function label($value) {
|
2017-12-21 03:27:57 +08:00
|
|
|
if(isset(static::$labels[$value])) {
|
|
|
|
return trans(static::$labels[$value]);
|
|
|
|
}
|
2017-12-20 10:19:36 +08:00
|
|
|
}
|
|
|
|
}
|