<?php
namespace QxCMS\Modules\Client\Models\Products;
use Illuminate\Database\Eloquent\Model;
class ProductBrand extends Model
{
protected $connection = 'client';
protected $table = 'product_brand';
protected $fillable = [
'name'
];
public function product()
{
return $this->hasMany('QxCMS\Modules\Client\Models\Products\Product', 'brand_id');
}
}