1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Arquivo extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
use SoftDeletes;
protected $fillable = [
'nome','titulo', 'versao', 'versaoFinal', 'data', 'trabalhoId', 'participanteId', 'proponenteId'
];
public function trabalho(){
return $this->belongsTo('App\Trabalho', 'trabalhoId');
}
public function substituicaos(){
return $this->hasMany('App\Substituicao');
}
public function participante() {
return $this->belongsTo('App\Participante', 'participanteId');
}
public function proponente() {
return $this->belongsTo('App\Proponente', 'proponenteId');
}
public function avaliadors(){
return $this->belongsToMany('App\Avaliador', 'avaliadors_plano_trabalho')->withPivot('status', 'AnexoParecer', 'parecer', 'recomendacao', 'created_at');
}
public function avaliacao_relatorios(){
return $this->hasMany('App\AvaliacaoRelatorio', 'arquivo_id');
}
}