<?php

namespace App;

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

class ProductColorDetail extends Model
{
    use HasFactory;

    protected $table = 'product_color_details';

    protected $fillable = ['id', 'product_id', 'product_color_id', 'created_at', 'updated_at'];

}
