You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
371 B
17 lines
371 B
<?php
|
|
|
|
namespace App\Admin\Transforms;
|
|
|
|
|
|
use App\Enums\UserStatusEnum;
|
|
|
|
class YesNoTransform implements Transform
|
|
{
|
|
public static function trans($is)
|
|
{
|
|
return $is
|
|
? "<i style='color: green;' class=\"fa fa-check-circle\" aria-hidden=\"true\"></i>"
|
|
: "<i style='color: red;' class=\"fa fa-times\" aria-hidden=\"true\"></i>";
|
|
}
|
|
}
|