d2d.emegrendeles.hu/app/Models/Contact.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

14 lines
211 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\MorphTo;
class Contact extends BaseAuditable
{
public function contactable(): MorphTo
{
return $this->morphTo();
}
}