as you know , Laravel use blades in views, now how should i do this.
suppose, page is located in views as APIVal.blade.php, and in my JS file i want to change the source of my iframe.
what should I write in "src" attribute then?
I have a form, user fills the form and submits it, i get all the values of the form via jquery and store them to session variables.
in the meanwhile user remain on the same page and there is a "Loading" image appears.
at the back-end I want to pass those values to the iframe page "APIVal.php" , and that page will be opened in an hidden iframe via jquery like this:
$("#iframeAPIVal").attr("src", "APIVal.php");
but I am not able to open that page "APIVal.php" in an iframe.