jeudi 5 mai 2016

Use all the elements of the table in Laravel

I have a table in the page "map.blade.index.php" as:

<table id="table">
<thead> 
<tr><th>ID</th> 
<th>Name</th> 
<th>Latitude</th>
<th>Longitude</th>
</tr> 
</thead>
<tbody><tr>
<td>0</td>
<td id="0">Name 174</td>
<td id="lat0">41.1230199</td>
<td id="lng0">14.73767010000006</td>
</tr>
</tbody>
</table>

and I try to use the table elements in my function Controller called "MapController@saved" , but I think that I can't use the table by her id. there a way to use all the elements of the table ? Now I must use one item at a time.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire