Initial commit
This commit is contained in:
48
app/Models/Social.php
Normal file
48
app/Models/Social.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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);
|
||||
;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user