|StoryView newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|StoryView newQuery() * @method static \Illuminate\Database\Eloquent\Builder|StoryView query() * @method static \Illuminate\Database\Eloquent\Builder|StoryView whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|StoryView whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|StoryView whereProfileId($value) * @method static \Illuminate\Database\Eloquent\Builder|StoryView whereStoryId($value) * @method static \Illuminate\Database\Eloquent\Builder|StoryView whereUpdatedAt($value) * * @mixin \Eloquent */ class StoryView extends Model { public $fillable = ['story_id', 'profile_id']; public function story() { return $this->belongsTo(Story::class); } }