<?php

namespace App;

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

class ProductBrandDetail extends Model
{
    use HasFactory;

    protected $table = 'product_brand_details';

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

    public function brand() {
        return $this->belongsTo(ProductBrand::class, 'product_brand_id', 'id')->select('id', 'name', 'slug');
    }
}
