add subjects to model + simple display on bo + add command to downloads documents to fixtures for test
<?php
namespace CorpusParole\Models;
use Illuminate\Database\Eloquent\Model;
class CocoonRevision extends Model
{
public function document() {
return $this->belongsTo('CorpusParole\Models\CocoonDocument');
}
}