Update StoryReaction model

This commit is contained in:
Daniel Supernault 2019-01-12 00:44:51 -07:00
parent d9f61d0424
commit d5bb6626b3
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 8 additions and 5 deletions

View File

@ -6,8 +6,8 @@ use Illuminate\Database\Eloquent\Model;
class StoryItem extends Model
{
public function story()
{
return $this->belongsTo(Story::class);
}
public function story()
{
return $this->belongsTo(Story::class);
}
}

View File

@ -6,5 +6,8 @@ use Illuminate\Database\Eloquent\Model;
class StoryReaction extends Model
{
//
public function story()
{
return $this->belongsTo(Story::class);
}
}