simedkom/app/Models/Classification.php
2025-02-27 08:41:37 +07:00

23 lines
416 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Classification extends Model
{
protected $table = 'classifications';
protected $fillable = [
'name',
'slug',
'status',
'description',
'enhancer_id'
];
public function subClassifications(){
return $this->hasMany(SubClassification::class, 'classification_id', 'id');
}
}