Complete the notice display. add various fields to document to correctly display the notice. Correct bug #0025746
<?php
namespace CorpusParole\Models;
use Illuminate\Database\Eloquent\Model;
class CocoonDocument extends Model
{
public function revisions() {
return $this->hasMany('CorpusParole\Models\CocoonDocument', 'document_id');
}
}