StoryView.php 220 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class StoryView extends Model
  5. {
  6. public $fillable = ['story_id', 'profile_id'];
  7. public function story()
  8. {
  9. return $this->belongsTo(Story::class);
  10. }
  11. }