Laravel-Check-if lié au model-existes
public function hasPosts(): bool
{
return $this->posts()->exists();
}
Troubled Tarantula
public function hasPosts(): bool
{
return $this->posts()->exists();
}
if ($model->relation->isNotEmpty()) {
....
}