How to check request is Ajax or not in Laravel 5?

How to check request is Ajax or not in Laravel 5?

In this post, I will let you know how to determine request is ajax or not in Laravel 5.

Sometime you need to check if request is ajax then response data only and if request is not ajax then response complete view in your application.

By using ajax() method in Laravel, you can check request is ajax or not.

Laravel Request class has many method to read HTTP request for the current request. You can also check if request is over https or request has json content type.

You can use directly Request facade that grant you access to the current request or you can use instance of Request Class.

Example :

  1. public function index(Request $request)
  2. {
  3. if($request->ajax()){
  4. return response()->json(['status'=>'Ajax request']);
  5. }
  6. return response()->json(['status'=>'Http request']);
  7. }

  1. public function index()
  2. {
  3. if(Request::ajax()){
  4. return response()->json(['status'=>'Ajax request']);
  5. }
  6. return response()->json(['status'=>'Http request']);
  7. }

To determine if the request is over HTTPS :

  1. if (Request::secure())
  2. {
  3. //
  4. }

Phone: (+91) 8800417876
Noida, 201301
Attention Required! | Cloudflare

Sorry, you have been blocked

You are unable to access ressim.net

Why have I been blocked?

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.