|Poin newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Poin newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Poin query() * @mixin \Eloquent */ class Poin extends Model { protected $table = 'poin'; protected $primaryKey = 'id_poin'; protected $fillable = [ 'id_user', 'jumlah_poin', 'sumber', 'tgl_kadaluarsa', ]; public function user() { return $this->belongsTo(User::class, 'id_user', 'id'); } }