Corcel\PostMeta::post PHP Method

post() public method

Post relationship
public post ( $ref = false ) : BelongsTo
return Illuminate\Database\Eloquent\Relations\BelongsTo
    public function post($ref = false)
    {
        if ($ref) {
            $this->primaryKey = 'meta_value';
            return $this->hasOne('Corcel\\Post', 'ID');
        }
        return $this->belongsTo('Corcel\\Post');
    }