Periksa apakah permintaan tersebut adalah permintaan AJAX di Laravel

if($request->ajax()){
  return "ajax request";
}
Isaac