Files
star-erp/app/Models/Category.php
sky121113 4f9d65a7c7
All checks were successful
Koori-ERP-Sync-Only / sync-update (push) Successful in 37s
1
2025-12-31 16:35:21 +08:00

31 lines
552 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
class Category extends Model
{
use HasFactory;
protected $fillable = [
'name',
'description',
'is_active',
];
protected $casts = [
'is_active' => 'boolean',
];
/**
* Get the products for the category.
*/
public function products(): HasMany
{
return $this->hasMany(Product::class);
}
}