'integer', 'user_id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; public function story(): BelongsTo { return $this->belongsTo(Story::class, 'story_id'); } public function user(): BelongsTo { return $this->belongsTo(User::class, 'user_id'); } }