clrghouz/app/Models/BBS/CUG.php
2024-05-28 12:44:55 +10:00

21 lines
309 B
PHP

<?php
namespace App\Models\BBS;
use Illuminate\Database\Eloquent\Model;
class CUG extends Model
{
protected $table = 'cugs';
public function isMember(CUG $o)
{
while ($o)
{
if (! $this->parent_id OR $o->id == $this->parent_id)
return TRUE;
$o = $this::findOrFail($o->parent_id);
}
}
}