Example #1
0
 public function employee()
 {
     return $this->belongsTo(Employee::getClass());
 }
Example #2
0
 public function employees()
 {
     return $this->belongsToMany(Employee::getClass(), 'project_employees')->withTimestamps();
 }
Example #3
0
 public function employees()
 {
     return $this->hasMany(Employee::getClass());
 }