Monday, February 27, 2017

How to pass variables from view to controller without form in laravel php

i have these values in the view folder. .blade file is
@foreach($nam as $ergebnisse)
<h3>Id:
Name_Id:
Geometrie_Id:
</h3>
<h3>

  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>



</h3>

 @endforeach

now i want to make another query in terms of these parameters.so how can i pass these to the controller or is there any other way of generating the queries within the view and displaying them?


from Latest question asked on Laravel tag.


via Hassan Haroon

Advertisement