LazyRecord\Schema\Mixin\MetadataMixinSchema::getAge PHP 메소드

getAge() 공개 정적인 메소드

Mixin methods
public static getAge ( $record )
    public static function getAge($record)
    {
        $createdOn = $record->created_on;
        $currentDate = new DateTime();
        return $currentDate->diff($createdOn);
    }
MetadataMixinSchema