ItSolutionStuff.com

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

By Hardik Savani • April 16, 2024
Laravel

In this tutorial, you will learn laravel storage class not found. This article goes in detail on Laravel Class "App\Http\Controllers\Storage" not found. I would like to share with you laravel class app http controllers storage not found. you can understand a concept of laravel storage not found.

You can solve 'Class "App\Http\Controllers\Storage" 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 example.txt file using Storage facade. When I run the project then I found 'Class "App\Http\Controllers\Storage" not found' error. you can see bellow screenshot as well.

Issue:

After some research, I found that If you are using the "Storage" facade 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\Storage;" on top of controller, middleware, command, event or blade files. Let's see bellow:

use Illuminate\Support\Facades\Storage;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Illuminate\Support\Facades\Storage;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

Storage::put('example.txt', 'Contents');

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 9 Image Upload Example Tutorial

Read Now →

How to Generate Random Unique Number in Laravel?

Read Now →

Laravel Jetstream Login with Username or Email Example

Read Now →

Laravel Blade If Multiple Conditions Example

Read Now →

Laravel Fullcalendar Example Tutorial

Read Now →

Laravel Carbon Subtract Days to Date Example

Read Now →

Laravel Circuit Breaker Pattern Example

Read Now →

How to Delete File from Public Folder / Storage Folder in Laravel?

Read Now →

Laravel Disable Registration Route Example

Read Now →

How to Create and Use Query Scope in Laravel Eloquent

Read Now →

How to Display Image from Storage Folder in Laravel?

Read Now →