Bumpyy
Default value for Settings page form
in the end i'm using array_map in mutateFormDataBeforeSave
protected function mutateFormDataBeforeSave(array $data): array
{
//? Loop through data and check if there's null value then replace it with empty string.
$data = array_map(function ($value) {
return $value === null ? "" : $value;
}, $data);
return $data;
}
6 replies