<?php namespace App; use Illuminate\Database\Eloquent\Model; class Userword extends Model { protected $fillable = [ 'user_id', 'word_id', 'word_bg_state', 'word_en_state', 'comment', ]; protected $table = 'user_words'; public function user() { return $this->belongsTo(User::class); } public function word() { return $this->belongsTo(Word::class); } }