Blame view
app/Models/Group_user.php
1.13 KB
2dde15d57 Утверждение переноса |
1 2 3 4 5 6 7 8 9 10 |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Group_user extends Model { use HasFactory; |
82a9544dc Связи моделей, гр... |
11 12 13 14 |
protected $fillable = [ 'name_group', 'user_id', |
29350503f Расширение полей ... |
15 |
'is_remove', |
82a9544dc Связи моделей, гр... |
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
]; /* * Связь Модели Группы (Group_user) с Модели Юзеры (User) многие-к-одному */ public function user() { return $this->belongsTo(User::class, 'user_id'); } /* * Связь модели Группы (Group_user) с Моделью Юзеры (User) - участники группы многие-ко-многим */ public function ingroup() { return $this->belongsToMany(User::class, 'group_works'); } |
29350503f Расширение полей ... |
33 34 35 36 37 38 39 40 41 42 43 |
/* * Связь модели Группы (Group_users) с моделью Группы пользователей (Group_works) один-ко-многим */ public function peoples() { return $this->hasMany(Group_works::class); } public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
2dde15d57 Утверждение переноса |
44 |
} |