lazyrecord\schema\mixin\MetadataMixinSchema::getAge PHP Method

getAge() public static method

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