I'm trying to load a .php
file into a div, I'm working with Laravel
but the file does not load me, I've already tried it with raw php
and it works perfectly. I already check routes and everything is fine I do not know what happens.
$(document).ready(function() {
$('.iconStu').click(function() {
$("#id").load('estudiantes.php');
});
});