fix task assignment table on pbg task

This commit is contained in:
arifal
2025-03-07 01:03:22 +07:00
parent ffc08f26cc
commit 9516b6f575
8 changed files with 167 additions and 35 deletions

View File

@@ -34,7 +34,7 @@ class GlobalSettingsController extends Controller
try {
$data = GlobalSetting::create($request->validated());
return new GlobalSettingResource($data);
} catch (\Exception $e) {
} catch (Exception $e) {
return $this->resError($e->getMessage(), null, $e->getCode());
}
}