feat(Admin/Company): 擴充業務類型與合約期間功能,補齊多語系翻譯詞條
All checks were successful
star-cloud-deploy-demo / deploy-demo (push) Successful in 1m9s

This commit is contained in:
2026-03-30 09:08:02 +08:00
parent c875ab7d29
commit fdd3589d7b
8 changed files with 237 additions and 43 deletions

View File

@@ -16,18 +16,22 @@ class Company extends Model
protected $fillable = [
'name',
'code',
'original_type',
'current_type',
'tax_id',
'contact_name',
'contact_phone',
'contact_email',
'status',
'valid_until',
'start_date',
'end_date',
'note',
'settings',
];
protected $casts = [
'valid_until' => 'date',
'start_date' => 'date',
'end_date' => 'date',
'status' => 'integer',
'settings' => 'array',
];