привет, я использую laravel с vuejs и javascript кодом, и это мой vuejs код
for(i = 0;i<response['data'].length;i++)
{
this.edited_lines.push(
{
id:response['data'][i]['id'], // this is integer
cost_center_id:response['data'][i]['cost_center_id'], // this is integer
credit:response['data'][i]['note'], // this is string
}
);
}
до сих пор все так хорошо ... но в моем клинке я сделал это код
<tr v-for='line , id in edited_lines'>
<td>
@php $cost_center_id = "{{line['cost_center_id']}}"; @endphp
{{gettype($cost_center_id)}} // this always resturn string not integer
</td>
</tr>
и потому что всегда возвращаемая строка не целая, если я делал это в своем блейде, я получаю ошибку
{{$cost_center_id * 1}} // if i put this code in my blade i gat error below
A non-numeric value encountered
я пытался это сделать ..
cost_center_id:1,
и получите ту же ошибку, любая помощь здесь спасибо ..