Add StoryItem Model

This commit is contained in:
Daniel Supernault 2019-01-12 00:43:53 -07:00
parent ae78addab4
commit d9f61d0424
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

13
app/StoryItem.php Normal file
View file

@ -0,0 +1,13 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class StoryItem extends Model
{
public function story()
{
return $this->belongsTo(Story::class);
}
}