34 lines
763 B
PHP
34 lines
763 B
PHP
<?php
|
|
|
|
namespace App\Models\Product;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use App\Traits\TenantScoped;
|
|
|
|
class ProductCategory extends Model
|
|
{
|
|
use HasFactory, SoftDeletes, TenantScoped;
|
|
|
|
protected $fillable = [
|
|
'company_id',
|
|
'name',
|
|
'name_dictionary_key',
|
|
];
|
|
|
|
public function products()
|
|
{
|
|
return $this->hasMany(Product::class, 'category_id');
|
|
}
|
|
|
|
/**
|
|
* Get the translations for the category name.
|
|
*/
|
|
public function translations()
|
|
{
|
|
return $this->hasMany(\App\Models\System\Translation::class, 'key', 'name_dictionary_key')
|
|
->where('group', 'category');
|
|
}
|
|
}
|