<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class BrandDetail extends Model
{
    protected $table = 'brand_details';

    protected $fillable = ['id', 'store_id', 'brand_id', 'created_at', 'updated_at'];

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