Problems with Ajax-request via Laravel












0














I have a big problem with Ajax-request via Laravel. I can't understand why it is not Ajax. All resources here.



It is my Ajax-request.



<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
var nickname = "<?php echo $name_user; ?>";

$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});

$('.subscribe').click(function() {
jQuery.ajax({
type: 'post',
url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", //Путь к обработчик
data: {'user_name': nickname},
response: 'text',
success: function(data) {
console.log(data['result']);
},
error: alert('Error');
})
})
</script>


It is my web-routes.



Route::group(['middleware' => 'auth'], function() {
Route::get('/', 'AccountController@redirectToAccountPage');
Route::get('/account', 'AccountController@showAccount')->name('account');
Route::get('/account/settings', 'AccountController@showSettings')->name('settings');
Route::post('/account/settings', 'AccountController@sendSetting');
Route::get('/account/subscribe', 'AccountController@showSubscriberForm')->name('subscriber');
Route::post('/account/subscribe', 'AccountController@findUser')->name('postFindUser');
Route::get('/account/load_image', 'AccountController@showLoadImage')->name('load_image');
Route::post('/account/load_image', 'PhotosLoadPhotoController@loadPhoto');
Route::post('/account/logout', 'AccountController@logout')->name('logout');

Route::post('/user/{user_name}/', 'AccountController@subscribe')->name('postSubscribe');
Route::get('/admin', 'AccountController@showAdminPanel');


});



It's my main request.



public function subscribe(Request $request, $name_user) {
if($request->ajax()) {
$query = 'SELECT id FROM subscriptions WHERE id_subscriber = ? AND id_subscribtion = ?';
$queryFindAnother = 'SELECT id From new_users WHERE nickname = ?';
$idAnotherUser = DB::select($queryFindAnother, [$name_user]);
if(!DB::select($query, [Auth::user()->id, $idAnotherUser[0]->id])) {
$query = 'INSERT INTO subscriptions (id_subscriber, id_subscribtion) VALUES (?, ?)';
dd('Я здесь');
//id_subscriber - тот, кто подписался.
//id_subscribtion - на кого подписан.
DB::insert($query, [Auth::user()->id, $idAnotherUser[0]->id]);
return response()->json([
'result' => '1', //всё прошло успешно, я подписан
]);
}

return back();
}

dd("It's not ajax");
return back();
}


As a result I got the message "It's not Ajax". Help me please!










share|improve this question






















  • please add the element of HTML which is associated with .subscribe class
    – Emtiaz Zahid
    Nov 20 at 3:17










  • url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", ... this looks like you mixing things up. Try just {{ route('postSubscribe', $name_user) }}", instead.
    – Peter
    Nov 20 at 3:53










  • @emtiaz-zahid, it already exists. <form method="post" action=""> {!! csrf_field() !!} <button class="subscribe" name="user">Подписаться.</button> </form> Maybe my problem can be connected with empty action but I have a route...
    – Егор Коротцев
    Nov 20 at 4:12












  • @peter, your way to solve my problem is not working. Try to help me again. Thank you for your previous way.
    – Егор Коротцев
    Nov 20 at 4:18
















0














I have a big problem with Ajax-request via Laravel. I can't understand why it is not Ajax. All resources here.



It is my Ajax-request.



<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
var nickname = "<?php echo $name_user; ?>";

$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});

$('.subscribe').click(function() {
jQuery.ajax({
type: 'post',
url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", //Путь к обработчик
data: {'user_name': nickname},
response: 'text',
success: function(data) {
console.log(data['result']);
},
error: alert('Error');
})
})
</script>


It is my web-routes.



Route::group(['middleware' => 'auth'], function() {
Route::get('/', 'AccountController@redirectToAccountPage');
Route::get('/account', 'AccountController@showAccount')->name('account');
Route::get('/account/settings', 'AccountController@showSettings')->name('settings');
Route::post('/account/settings', 'AccountController@sendSetting');
Route::get('/account/subscribe', 'AccountController@showSubscriberForm')->name('subscriber');
Route::post('/account/subscribe', 'AccountController@findUser')->name('postFindUser');
Route::get('/account/load_image', 'AccountController@showLoadImage')->name('load_image');
Route::post('/account/load_image', 'PhotosLoadPhotoController@loadPhoto');
Route::post('/account/logout', 'AccountController@logout')->name('logout');

Route::post('/user/{user_name}/', 'AccountController@subscribe')->name('postSubscribe');
Route::get('/admin', 'AccountController@showAdminPanel');


});



It's my main request.



public function subscribe(Request $request, $name_user) {
if($request->ajax()) {
$query = 'SELECT id FROM subscriptions WHERE id_subscriber = ? AND id_subscribtion = ?';
$queryFindAnother = 'SELECT id From new_users WHERE nickname = ?';
$idAnotherUser = DB::select($queryFindAnother, [$name_user]);
if(!DB::select($query, [Auth::user()->id, $idAnotherUser[0]->id])) {
$query = 'INSERT INTO subscriptions (id_subscriber, id_subscribtion) VALUES (?, ?)';
dd('Я здесь');
//id_subscriber - тот, кто подписался.
//id_subscribtion - на кого подписан.
DB::insert($query, [Auth::user()->id, $idAnotherUser[0]->id]);
return response()->json([
'result' => '1', //всё прошло успешно, я подписан
]);
}

return back();
}

dd("It's not ajax");
return back();
}


As a result I got the message "It's not Ajax". Help me please!










share|improve this question






















  • please add the element of HTML which is associated with .subscribe class
    – Emtiaz Zahid
    Nov 20 at 3:17










  • url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", ... this looks like you mixing things up. Try just {{ route('postSubscribe', $name_user) }}", instead.
    – Peter
    Nov 20 at 3:53










  • @emtiaz-zahid, it already exists. <form method="post" action=""> {!! csrf_field() !!} <button class="subscribe" name="user">Подписаться.</button> </form> Maybe my problem can be connected with empty action but I have a route...
    – Егор Коротцев
    Nov 20 at 4:12












  • @peter, your way to solve my problem is not working. Try to help me again. Thank you for your previous way.
    – Егор Коротцев
    Nov 20 at 4:18














0












0








0







I have a big problem with Ajax-request via Laravel. I can't understand why it is not Ajax. All resources here.



It is my Ajax-request.



<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
var nickname = "<?php echo $name_user; ?>";

$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});

$('.subscribe').click(function() {
jQuery.ajax({
type: 'post',
url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", //Путь к обработчик
data: {'user_name': nickname},
response: 'text',
success: function(data) {
console.log(data['result']);
},
error: alert('Error');
})
})
</script>


It is my web-routes.



Route::group(['middleware' => 'auth'], function() {
Route::get('/', 'AccountController@redirectToAccountPage');
Route::get('/account', 'AccountController@showAccount')->name('account');
Route::get('/account/settings', 'AccountController@showSettings')->name('settings');
Route::post('/account/settings', 'AccountController@sendSetting');
Route::get('/account/subscribe', 'AccountController@showSubscriberForm')->name('subscriber');
Route::post('/account/subscribe', 'AccountController@findUser')->name('postFindUser');
Route::get('/account/load_image', 'AccountController@showLoadImage')->name('load_image');
Route::post('/account/load_image', 'PhotosLoadPhotoController@loadPhoto');
Route::post('/account/logout', 'AccountController@logout')->name('logout');

Route::post('/user/{user_name}/', 'AccountController@subscribe')->name('postSubscribe');
Route::get('/admin', 'AccountController@showAdminPanel');


});



It's my main request.



public function subscribe(Request $request, $name_user) {
if($request->ajax()) {
$query = 'SELECT id FROM subscriptions WHERE id_subscriber = ? AND id_subscribtion = ?';
$queryFindAnother = 'SELECT id From new_users WHERE nickname = ?';
$idAnotherUser = DB::select($queryFindAnother, [$name_user]);
if(!DB::select($query, [Auth::user()->id, $idAnotherUser[0]->id])) {
$query = 'INSERT INTO subscriptions (id_subscriber, id_subscribtion) VALUES (?, ?)';
dd('Я здесь');
//id_subscriber - тот, кто подписался.
//id_subscribtion - на кого подписан.
DB::insert($query, [Auth::user()->id, $idAnotherUser[0]->id]);
return response()->json([
'result' => '1', //всё прошло успешно, я подписан
]);
}

return back();
}

dd("It's not ajax");
return back();
}


As a result I got the message "It's not Ajax". Help me please!










share|improve this question













I have a big problem with Ajax-request via Laravel. I can't understand why it is not Ajax. All resources here.



It is my Ajax-request.



<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
var nickname = "<?php echo $name_user; ?>";

$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});

$('.subscribe').click(function() {
jQuery.ajax({
type: 'post',
url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", //Путь к обработчик
data: {'user_name': nickname},
response: 'text',
success: function(data) {
console.log(data['result']);
},
error: alert('Error');
})
})
</script>


It is my web-routes.



Route::group(['middleware' => 'auth'], function() {
Route::get('/', 'AccountController@redirectToAccountPage');
Route::get('/account', 'AccountController@showAccount')->name('account');
Route::get('/account/settings', 'AccountController@showSettings')->name('settings');
Route::post('/account/settings', 'AccountController@sendSetting');
Route::get('/account/subscribe', 'AccountController@showSubscriberForm')->name('subscriber');
Route::post('/account/subscribe', 'AccountController@findUser')->name('postFindUser');
Route::get('/account/load_image', 'AccountController@showLoadImage')->name('load_image');
Route::post('/account/load_image', 'PhotosLoadPhotoController@loadPhoto');
Route::post('/account/logout', 'AccountController@logout')->name('logout');

Route::post('/user/{user_name}/', 'AccountController@subscribe')->name('postSubscribe');
Route::get('/admin', 'AccountController@showAdminPanel');


});



It's my main request.



public function subscribe(Request $request, $name_user) {
if($request->ajax()) {
$query = 'SELECT id FROM subscriptions WHERE id_subscriber = ? AND id_subscribtion = ?';
$queryFindAnother = 'SELECT id From new_users WHERE nickname = ?';
$idAnotherUser = DB::select($queryFindAnother, [$name_user]);
if(!DB::select($query, [Auth::user()->id, $idAnotherUser[0]->id])) {
$query = 'INSERT INTO subscriptions (id_subscriber, id_subscribtion) VALUES (?, ?)';
dd('Я здесь');
//id_subscriber - тот, кто подписался.
//id_subscribtion - на кого подписан.
DB::insert($query, [Auth::user()->id, $idAnotherUser[0]->id]);
return response()->json([
'result' => '1', //всё прошло успешно, я подписан
]);
}

return back();
}

dd("It's not ajax");
return back();
}


As a result I got the message "It's not Ajax". Help me please!







javascript php laravel logic






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 at 2:57









Егор Коротцев

11




11












  • please add the element of HTML which is associated with .subscribe class
    – Emtiaz Zahid
    Nov 20 at 3:17










  • url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", ... this looks like you mixing things up. Try just {{ route('postSubscribe', $name_user) }}", instead.
    – Peter
    Nov 20 at 3:53










  • @emtiaz-zahid, it already exists. <form method="post" action=""> {!! csrf_field() !!} <button class="subscribe" name="user">Подписаться.</button> </form> Maybe my problem can be connected with empty action but I have a route...
    – Егор Коротцев
    Nov 20 at 4:12












  • @peter, your way to solve my problem is not working. Try to help me again. Thank you for your previous way.
    – Егор Коротцев
    Nov 20 at 4:18


















  • please add the element of HTML which is associated with .subscribe class
    – Emtiaz Zahid
    Nov 20 at 3:17










  • url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", ... this looks like you mixing things up. Try just {{ route('postSubscribe', $name_user) }}", instead.
    – Peter
    Nov 20 at 3:53










  • @emtiaz-zahid, it already exists. <form method="post" action=""> {!! csrf_field() !!} <button class="subscribe" name="user">Подписаться.</button> </form> Maybe my problem can be connected with empty action but I have a route...
    – Егор Коротцев
    Nov 20 at 4:12












  • @peter, your way to solve my problem is not working. Try to help me again. Thank you for your previous way.
    – Егор Коротцев
    Nov 20 at 4:18
















please add the element of HTML which is associated with .subscribe class
– Emtiaz Zahid
Nov 20 at 3:17




please add the element of HTML which is associated with .subscribe class
– Emtiaz Zahid
Nov 20 at 3:17












url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", ... this looks like you mixing things up. Try just {{ route('postSubscribe', $name_user) }}", instead.
– Peter
Nov 20 at 3:53




url: "{{ route('postSubscribe', '<?php echo $name_user; ?>') }}", ... this looks like you mixing things up. Try just {{ route('postSubscribe', $name_user) }}", instead.
– Peter
Nov 20 at 3:53












@emtiaz-zahid, it already exists. <form method="post" action=""> {!! csrf_field() !!} <button class="subscribe" name="user">Подписаться.</button> </form> Maybe my problem can be connected with empty action but I have a route...
– Егор Коротцев
Nov 20 at 4:12






@emtiaz-zahid, it already exists. <form method="post" action=""> {!! csrf_field() !!} <button class="subscribe" name="user">Подписаться.</button> </form> Maybe my problem can be connected with empty action but I have a route...
– Егор Коротцев
Nov 20 at 4:12














@peter, your way to solve my problem is not working. Try to help me again. Thank you for your previous way.
– Егор Коротцев
Nov 20 at 4:18




@peter, your way to solve my problem is not working. Try to help me again. Thank you for your previous way.
– Егор Коротцев
Nov 20 at 4:18












2 Answers
2






active

oldest

votes


















0














I think the problem is in your form



Please update your form



<form> 
{!! csrf_field() !!}
<button class="subscribe" name="user" type="button">Подписаться.</button>
</form>


Here, you don't need any action or method also does not need any form



because you passing the form data as ajax



and add the type of your button as button, by default its a submit type, so its submitting the form as normally.






share|improve this answer





















  • I changed the button into the input with type = submit but it doesn't work. Thanks anyway for your solution. Maybe the problem can be connected with X-CSRF-TOKEN when I send the Ajax-request.
    – Егор Коротцев
    Nov 20 at 5:31





















0














Make sure you have imported the Request Facade on top






share|improve this answer





















  • Thank you for your solution but it doesn't work.
    – Егор Коротцев
    Nov 20 at 5:27










  • I added "use IlluminateSupportFacades" at the top of the page where there is Ajax-request and where I have my main request but it doesn't work. Thanks anyway for your solution.
    – Егор Коротцев
    Nov 20 at 5:38












  • use IlluminateHttpRequest; tried this?
    – Ravi
    Nov 20 at 6:08












  • Yes, I tried. It doesn't work too. Thanks anyway.
    – Егор Коротцев
    Nov 20 at 7:24











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53385564%2fproblems-with-ajax-request-via-laravel%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














I think the problem is in your form



Please update your form



<form> 
{!! csrf_field() !!}
<button class="subscribe" name="user" type="button">Подписаться.</button>
</form>


Here, you don't need any action or method also does not need any form



because you passing the form data as ajax



and add the type of your button as button, by default its a submit type, so its submitting the form as normally.






share|improve this answer





















  • I changed the button into the input with type = submit but it doesn't work. Thanks anyway for your solution. Maybe the problem can be connected with X-CSRF-TOKEN when I send the Ajax-request.
    – Егор Коротцев
    Nov 20 at 5:31


















0














I think the problem is in your form



Please update your form



<form> 
{!! csrf_field() !!}
<button class="subscribe" name="user" type="button">Подписаться.</button>
</form>


Here, you don't need any action or method also does not need any form



because you passing the form data as ajax



and add the type of your button as button, by default its a submit type, so its submitting the form as normally.






share|improve this answer





















  • I changed the button into the input with type = submit but it doesn't work. Thanks anyway for your solution. Maybe the problem can be connected with X-CSRF-TOKEN when I send the Ajax-request.
    – Егор Коротцев
    Nov 20 at 5:31
















0












0








0






I think the problem is in your form



Please update your form



<form> 
{!! csrf_field() !!}
<button class="subscribe" name="user" type="button">Подписаться.</button>
</form>


Here, you don't need any action or method also does not need any form



because you passing the form data as ajax



and add the type of your button as button, by default its a submit type, so its submitting the form as normally.






share|improve this answer












I think the problem is in your form



Please update your form



<form> 
{!! csrf_field() !!}
<button class="subscribe" name="user" type="button">Подписаться.</button>
</form>


Here, you don't need any action or method also does not need any form



because you passing the form data as ajax



and add the type of your button as button, by default its a submit type, so its submitting the form as normally.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 20 at 4:22









Emtiaz Zahid

1,042516




1,042516












  • I changed the button into the input with type = submit but it doesn't work. Thanks anyway for your solution. Maybe the problem can be connected with X-CSRF-TOKEN when I send the Ajax-request.
    – Егор Коротцев
    Nov 20 at 5:31




















  • I changed the button into the input with type = submit but it doesn't work. Thanks anyway for your solution. Maybe the problem can be connected with X-CSRF-TOKEN when I send the Ajax-request.
    – Егор Коротцев
    Nov 20 at 5:31


















I changed the button into the input with type = submit but it doesn't work. Thanks anyway for your solution. Maybe the problem can be connected with X-CSRF-TOKEN when I send the Ajax-request.
– Егор Коротцев
Nov 20 at 5:31






I changed the button into the input with type = submit but it doesn't work. Thanks anyway for your solution. Maybe the problem can be connected with X-CSRF-TOKEN when I send the Ajax-request.
– Егор Коротцев
Nov 20 at 5:31















0














Make sure you have imported the Request Facade on top






share|improve this answer





















  • Thank you for your solution but it doesn't work.
    – Егор Коротцев
    Nov 20 at 5:27










  • I added "use IlluminateSupportFacades" at the top of the page where there is Ajax-request and where I have my main request but it doesn't work. Thanks anyway for your solution.
    – Егор Коротцев
    Nov 20 at 5:38












  • use IlluminateHttpRequest; tried this?
    – Ravi
    Nov 20 at 6:08












  • Yes, I tried. It doesn't work too. Thanks anyway.
    – Егор Коротцев
    Nov 20 at 7:24
















0














Make sure you have imported the Request Facade on top






share|improve this answer





















  • Thank you for your solution but it doesn't work.
    – Егор Коротцев
    Nov 20 at 5:27










  • I added "use IlluminateSupportFacades" at the top of the page where there is Ajax-request and where I have my main request but it doesn't work. Thanks anyway for your solution.
    – Егор Коротцев
    Nov 20 at 5:38












  • use IlluminateHttpRequest; tried this?
    – Ravi
    Nov 20 at 6:08












  • Yes, I tried. It doesn't work too. Thanks anyway.
    – Егор Коротцев
    Nov 20 at 7:24














0












0








0






Make sure you have imported the Request Facade on top






share|improve this answer












Make sure you have imported the Request Facade on top







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 20 at 4:32









Ravi

213




213












  • Thank you for your solution but it doesn't work.
    – Егор Коротцев
    Nov 20 at 5:27










  • I added "use IlluminateSupportFacades" at the top of the page where there is Ajax-request and where I have my main request but it doesn't work. Thanks anyway for your solution.
    – Егор Коротцев
    Nov 20 at 5:38












  • use IlluminateHttpRequest; tried this?
    – Ravi
    Nov 20 at 6:08












  • Yes, I tried. It doesn't work too. Thanks anyway.
    – Егор Коротцев
    Nov 20 at 7:24


















  • Thank you for your solution but it doesn't work.
    – Егор Коротцев
    Nov 20 at 5:27










  • I added "use IlluminateSupportFacades" at the top of the page where there is Ajax-request and where I have my main request but it doesn't work. Thanks anyway for your solution.
    – Егор Коротцев
    Nov 20 at 5:38












  • use IlluminateHttpRequest; tried this?
    – Ravi
    Nov 20 at 6:08












  • Yes, I tried. It doesn't work too. Thanks anyway.
    – Егор Коротцев
    Nov 20 at 7:24
















Thank you for your solution but it doesn't work.
– Егор Коротцев
Nov 20 at 5:27




Thank you for your solution but it doesn't work.
– Егор Коротцев
Nov 20 at 5:27












I added "use IlluminateSupportFacades" at the top of the page where there is Ajax-request and where I have my main request but it doesn't work. Thanks anyway for your solution.
– Егор Коротцев
Nov 20 at 5:38






I added "use IlluminateSupportFacades" at the top of the page where there is Ajax-request and where I have my main request but it doesn't work. Thanks anyway for your solution.
– Егор Коротцев
Nov 20 at 5:38














use IlluminateHttpRequest; tried this?
– Ravi
Nov 20 at 6:08






use IlluminateHttpRequest; tried this?
– Ravi
Nov 20 at 6:08














Yes, I tried. It doesn't work too. Thanks anyway.
– Егор Коротцев
Nov 20 at 7:24




Yes, I tried. It doesn't work too. Thanks anyway.
– Егор Коротцев
Nov 20 at 7:24


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53385564%2fproblems-with-ajax-request-via-laravel%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]