43 lines
848 B
PHP
43 lines
848 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Str;
|
|
|
|
class Subcategory extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'category_id',
|
|
'name',
|
|
'slug',
|
|
'value',
|
|
];
|
|
|
|
/**
|
|
* Boot the model.
|
|
*/
|
|
protected static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
static::creating(function ($subcategory) {
|
|
$subcategory->slug = Str::slug($subcategory->name);
|
|
});
|
|
|
|
static::updating(function ($subcategory) {
|
|
$subcategory->slug = Str::slug($subcategory->name);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Get the category that owns the subcategory.
|
|
*/
|
|
public function category()
|
|
{
|
|
return $this->belongsTo(Category::class);
|
|
}
|
|
}
|