Hi i'm working laravel 5 with mysql. I did store zipcode into my database it working well but when the field is empty it stored zero(0) but i want to store empty value in database.
I'm also changed mysql using alter table like below
ALTER TABLE insurances
CHANGE COLUMN zipcode4
zipcode4
int(4) unsigned DEFAULT NULL;
but it wont work, have any idea ?
Thanks in advance