hi i have this laravel php blade code
<tr v-for='line , id in edited_lines'>
<td>
@include(
'treats.create_search_and_select',
[
'search_and_select' => 'user_id[]',
'value' => null,
'hidden_id' => null,
'type' => 'all_type_of_accounts',
'required' => 'required',
'language' => 'account',
'hint' => null,
'policy' => null,
'show_type' => 'blank',
'rank' => null,
]
)
</td>
</tr>
now what i want is to pass value to hidden_id thats come from the v-for above like this ..
'hidden_id' => line['anything'],
so i tried this .
'value' => "@{{line}}",
and this
'value' => "{{line}}",
and none from aboove work ..
so how can i set the value or hidden_id from value come from <tr v-for='line , id in edited_lines'>
thanks a lot