49 lines
949 B
PHP
49 lines
949 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Social extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'icon',
|
|
'url_structure'
|
|
];
|
|
|
|
protected $guarded = [];
|
|
|
|
|
|
/**
|
|
* Get all sociables that are assigned to this social.
|
|
*/
|
|
public function sociables()
|
|
{
|
|
return $this->morphedByMany(User::class, 'sociable');
|
|
}
|
|
|
|
|
|
/**
|
|
* Get all users that are assigned to this social.
|
|
*/
|
|
public function users()
|
|
{
|
|
return $this->morphedByMany(User::class, 'sociable')->where('sociable_type', User::class);
|
|
}
|
|
|
|
|
|
/**
|
|
* Get all organizations that are assigned to this social.
|
|
*/
|
|
public function organizations()
|
|
{
|
|
return $this->morphedByMany(Organization::class, 'sociable')->where('sociable_type', Organization::class);
|
|
;
|
|
}
|
|
|
|
}
|