+ 1
How to show details on a bootstrap modal with laravel using jquery ajax
I wanna show details of the user on a bootstrap modal with laravel using jquery and I am stacked
2 Antworten
+ 1
After success your request, in success method of ajax, type this for show modal:
$('#myModal').modal('show');
And this for hide it:
$('#myModal').modal('hide');
0
what did you tried?