How to Get Request Header in Laravel 10

Websolutionstuff | Dec-11-2023 | Categories : Laravel

Ever wondered how to access request headers in your Laravel 10 application? Join me as I guide you through a quick and simple step-by-step process. In this tutorial, we'll create an endpoint to effortlessly retrieve all headers or specific ones.

In this article, I'll show you how to get a request header in laravel 10. Also, you can use this example in Laravel 7, Laravel 8, and Laravel 9.

Let's dive into the world of Laravel and explore the power of handling request headers effortlessly. Also, I use the header() method of request.

Step 1: Create a Route

Define a route in your routes/web.php file or routes/api.php file, depending on whether you are working with a web or API route.

use App\Http\Controllers\UserController;

Route::get('/get-request-headers', [UserController::class, 'getRequestHeaders']);

 

Step 2: Create a Controller

Generate a controller if you don't have one already:

php artisan make:controller UserController

 

Step 3: Implement the Controller Method

Open the generated controller (located in the app/Http/Controllers directory) and implement the method to retrieve request headers:

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
  
class UserController extends Controller
{
    /**
     * Write code on Method
     *
     * @return response()
     */
    public function getRequestHeaders(Request $request)
    {
        $headers = $request->header(); /* Getting All Headers from request */
  
        $header = $request->header('Accept'); /* Getting Singe Header value from request */
    
        return response()->json($headers);
    }
}

 

Step 4: Test the Endpoint

Run your Laravel development server:

php artisan serve

 

Step 5: Retrieve Specific Header

If you want to retrieve a specific header, you can use the header method on the request:

public function getRequestHeaders(Request $request)
{
    // Retrieve a specific header
    $contentType = $request->header('Content-Type');

    return response()->json(['Content-Type' => $contentType]);
}

 

Step 6: Handle Missing Headers

To handle cases where a header may not exist, you can use the has method:

public function getRequestHeaders(Request $request)
{
    // Check if a header exists
    if ($request->headers->has('Authorization')) {
        $authorizationHeader = $request->header('Authorization');
        return response()->json(['Authorization' => $authorizationHeader]);
    } else {
        return response()->json(['message' => 'Authorization header not present'], 400);
    }
}

That's it! You've successfully created an endpoint to retrieve request headers in Laravel 10.

 


You might also like:

Recommended Post
Featured Post
PHP - file_get_contents() SSL Connection Reset by Peer
PHP - file_get_contents() SSL...

Hey there! So, you're working with PHP and trying to fetch content from an HTTPS URL using the file_get_contents() f...

Read More

Mar-01-2024

Laravel 8 Mobile Number OTP Authentication using Firebase
Laravel 8 Mobile Number OTP Au...

Hello All, In this tutorial i will show you laravel 8 mobile number OTP authentication using firebase, There are many...

Read More

Mar-31-2021

How To Upload And Preview Image In React JS
How To Upload And Preview Imag...

In this article, we will see how to upload and preview images in react js. You can learn how to show an i...

Read More

Sep-06-2022

How To Replace All Occurrences Of String In Javascript
How To Replace All Occurrences...

In this article, we will see how to replace all occurrences of a string in javascript. You can use the javascript r...

Read More

Nov-07-2022