17 lines
230 B
PHP
17 lines
230 B
PHP
<?php
|
|
|
|
namespace Laravel\Nova\Fields;
|
|
|
|
class MorphOne extends HasOne
|
|
{
|
|
/**
|
|
* Get the relationship type.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function relationshipType()
|
|
{
|
|
return 'morphOne';
|
|
}
|
|
}
|