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

24 lines
447 B
PHP

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