'int', 'product_id' => 'int', 'amount' => 'int' ]; protected $fillable = [ 'user_id', 'product_id', 'amount' ]; public function product() { return $this->belongsTo(Product::class); } public function user() { return $this->belongsTo(User::class); } }