ItSolutionStuff.com

Laravel - Class "App\Http\Controllers\Hash" not found - Solved

By Hardik Savani • April 16, 2024
Laravel

This article is focused on laravel Hash class not found. you will learn Laravel Class "App\Http\Controllers\Hash" not found. if you have question about laravel hash password class not found then I will give simple example with solution. you can understand a concept of laravel hash not found.

You can solve 'Class "App\Http\Controllers\Hash" not found' issue in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 version.

A few days ago I was working on my laravel app and I simply create hash password using Hash. When I run the project then I found 'Class "App\Http\Controllers\Hash" not found' error. you can see bellow screenshot as well.

Issue:

After some research, I found that If you are using the "Hash" class in Controller, Middleware, or blade file then you must have used facade on top.

so let's see bellow solution and example code here:

Solution:

You must need to add "use Illuminate\Support\Facades\Hash;" on top of controller, middleware, command, event or blade files. Let's see bellow:

use Illuminate\Support\Facades\Hash;

Example:

You can see controller file code, how to use it.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\User;

use Illuminate\Support\Facades\Hash;

class UserController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index()

{

$password = Hash::make('123456');

User::create([

'name' => 'Hardik Savani',

'email' => 'hardik@gmail.com',

'password' => $password

]);

return view('users');

}

}

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Maatwebsite Excel Set Cell Height and Width Example

Read Now →

Laravel Copy Record using Eloquent Replicate Example

Read Now →

Razorpay Payment Gateway Integration in Laravel 8 Tutorial

Read Now →

Laravel Carbon Check If Date is Greater Than Other Date

Read Now →

Laravel Unique Validation With Soft Delete Example

Read Now →

Laravel Mobile/Phone Number Validation Example

Read Now →

Laravel Copy File from One Folder to Another Example

Read Now →

Laravel Collection Duplicates Method Example

Read Now →

How to Change Column Name and Data Type in Laravel Migration?

Read Now →

Laravel Collection Search Method Example

Read Now →

How to Check Current Password using Hash Check in Laravel?

Read Now →