mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 08:44:04 +00:00
17 lines
308 B
PHP
17 lines
308 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Tests\Etc;
|
|
|
|
use Stancl\Tenancy\Database\Concerns\BelongsToPrimaryModel;
|
|
|
|
class ScopedComment extends Comment
|
|
{
|
|
use BelongsToPrimaryModel;
|
|
|
|
protected $table = 'comments';
|
|
|
|
public function getRelationshipToPrimaryModel(): string
|
|
{
|
|
return 'post';
|
|
}
|
|
}
|