Files
timebank-cc-public/app/Models/Social.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

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);
;
}
}