Laravel-Check-IF-verwandte Modellexisten
public function hasPosts(): bool
{
return $this->posts()->exists();
}
Troubled Tarantula
public function hasPosts(): bool
{
return $this->posts()->exists();
}
if ($model->relation->isNotEmpty()) {
....
}