Solution:1
Also if someone would not send jQuery POST via form you can simply add to your script code below:
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
Remember to include this html inside your view:
<meta name="csrf-token" content="{{ csrf_token() }}">