20 lines
349 B
PHP
20 lines
349 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
class Contactgroup extends Model
|
|
{
|
|
|
|
protected $fillable = ['name', 'type'];
|
|
|
|
public function contactgroupable()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
|
|
}
|