1 | <?php |
||
7 | class Enrichment extends Model |
||
8 | { |
||
9 | /** |
||
10 | * The attributes that are mass assignable. |
||
11 | * |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $fillable = ['document_id', 'document_version', 'service_name', 'service_data']; |
||
15 | |||
16 | /** |
||
17 | * The document the cover belongs to. |
||
18 | * |
||
19 | * @return Document |
||
20 | */ |
||
21 | public function document() |
||
25 | |||
26 | } |
||
27 |