Update Status model

This commit is contained in:
Daniel Supernault 2019-06-01 21:31:03 -06:00
parent d1c0e9aae9
commit 070dc14f31
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 0 deletions

View File

@ -44,6 +44,12 @@ class Status extends Model
'loop'
];
const MAX_MENTIONS = 5;
const MAX_HASHTAGS = 30;
const MAX_LINKS = 2;
public function profile()
{
return $this->belongsTo(Profile::class);