/home/bdqbpbxa/api-uniferx.goodface.com.ua/vendor/laravel/nova/src/Contracts/RelatableField.php
<?php

namespace Laravel\Nova\Contracts;

/**
 * @mixin \Laravel\Nova\Fields\Field
 *
 * @property string $attribute
 * @property \Laravel\Nova\Resource $resourceClass
 * @property string $resourceName
 */
interface RelatableField
{
    /**
     * Get the relationship name.
     *
     * @return string
     */
    public function relationshipName();

    /**
     * Get the relationship type.
     *
     * @return string
     */
    public function relationshipType();
}