store/app/Models/Concerns/HasPendingOwnerVerification.php

12 lines
212 B
PHP

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