12 lines
212 B
PHP
12 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Models\Concerns;
|
|
|
|
trait HasPendingOwnerVerification
|
|
{
|
|
public function hasPendingOwnerVerification(): bool
|
|
{
|
|
return $this->pendingOwnerVerificationRequest()->exists();
|
|
}
|
|
}
|