I have the following code:
JavaScript
x
$data['daily_missions'] = DailyMission::with(['userProgress' => function($q) use ($user){
$q->where('user_id',$user->id);
}])
->orderBy('diamonds')
->where('is_daily',1)
->get();
In the DB, most of the fields of the DailyMission / userProgress models are integers – but the API return them as string.
for example:
JavaScript
{
price: "123"
}
instead of:
JavaScript
{
price: 123
}
Any idea what can cause this issue?
Version:
JavaScript
"laravel/framework": "5.2.*",
Advertisement
Answer
In your model, you should define the field as an integer in the $cast
attribute.
JavaScript
protected $casts = [
'field_name' => 'integer',
];
You can read the docs for more information by opening the following documentation link.