Files
star-erp/app/Models/Category.php
sky121113 41976c868d
All checks were successful
Koori-ERP-Sync-Only / sync-update (push) Successful in 39s
test
2025-12-31 16:22:31 +08:00

32 lines
557 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);
}
}