Fix error handling in BulkAssetsController

Updated exception handling to capture detailed validation errors in BulkAssetsController. Corrected formatting in notifications view for displaying error messages.
This commit is contained in:
spencerrlongg 2024-11-20 16:42:56 -06:00
parent 6ddaa0bb3e
commit 10126b8362
2 changed files with 3 additions and 2 deletions

View file

@ -243,7 +243,7 @@ class BulkAssetsController extends Controller
);
// catch exceptions
} catch (ValidationException $e) {
$errors[$key] = $e->getMessage();
$errors = $e->validator->errors()->toArray();
} catch (CustomFieldPermissionException $e) {
//$errors[$key] = $e->getMessage();
$custom_field_problem = true;
@ -253,6 +253,7 @@ class BulkAssetsController extends Controller
}
}
if (!empty($errors)) {
//dump($errors);
return redirect($bulk_back_url)->with('bulk_asset_errors', $errors);
}
if ($custom_field_problem) {