# Task

app / Models / Task.php

protected $guarded = [];
public function taskMemberInfo(){
    return $this->belongsToMany( User::class, 'task_members','task_id', 'user_id');
}
1
2
3
4
Last Updated: 6/1/2022, 10:25:03 PM