<?php

namespace App;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class ProductColor extends Model
{
    use HasFactory;
    
    protected $table = 'product_colors';
    
    protected $fillable = ['id', 'product_id', 'color_id', 'created_at', 'updated_at'];

    public function color() {
        return $this->belongsTo(Color::class, 'color_id', 'id')->select('id', 'name', 'slug', 'color');
    }
}
