<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Parecer extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'resultado', 'revisorId', 'trabalhoId'
];
public function user(){
return $this->belongsTo('App\User', 'revisorId');
}
public function trabalho(){
return $this->belongsTo('App\Trabalho', 'trabalhoId');
}
}
-
Guilherme Silva authored253c5cdb