reconstruct job admin side
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Successful in 1m23s

This commit is contained in:
root
2026-09-03 01:58:54 -04:00
parent 228824182a
commit 6936a822c8
11 changed files with 166 additions and 3 deletions
@@ -398,6 +398,7 @@ class JobPostingController extends BaseController
'department' => trim((string) $this->request->getPost('department')),
'location' => trim((string) $this->request->getPost('location')),
'employment_type' => trim((string) $this->request->getPost('employment_type')),
'responsibilities' => trim((string) $this->request->getPost('responsibilities')),
'requirements' => trim((string) $this->request->getPost('requirements')),
];
}
@@ -427,6 +428,7 @@ class JobPostingController extends BaseController
'department' => (string) ($data['department'] ?? ''),
'location' => (string) ($data['location'] ?? ''),
'employment_type' => (string) ($data['employment_type'] ?? ''),
'responsibilities' => (string) ($data['responsibilities'] ?? ''),
'requirements' => (string) ($data['requirements'] ?? ''),
];
}