1
0
Fork 0

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
1 changed files with 13 additions and 0 deletions

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);
}
}