Files
kulakpos_web/Modules/HrmAddon/App/Models/Department.php
eko54r 3e1b64e008
Some checks failed
Build, Push and Deploy / build-and-push (push) Failing after 3m30s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 15s
Build, Push and Deploy / deploy-staging (push) Has been skipped
Build, Push and Deploy / deploy-production (push) Has been skipped
update addon HRM
2026-05-04 23:04:09 +07:00

19 lines
375 B
PHP

<?php
namespace Modules\HrmAddon\App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Department extends Model
{
use HasFactory;
protected $fillable = ['business_id', 'name', 'description', 'status'];
protected $casts = [
'business_id' => 'integer',
'status' => 'integer',
];
}