Skip to content
Advertisement

Laravel – API return fields as string while they are int in the DB

I have the following code:

JavaScript

In the DB, most of the fields of the DailyMission / userProgress models are integers – but the API return them as string.

for example:

JavaScript

instead of:

JavaScript

Any idea what can cause this issue?

Version:

JavaScript

Advertisement

Answer

In your model, you should define the field as an integer in the $cast attribute.

JavaScript

You can read the docs for more information by opening the following documentation link.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement