ItSolutionStuff.com

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

By Hardik Savani β€’ April 16, 2024
Laravel

Here, I will show you how to work Laravel Class "App\Http\Controllers\Cache" not found. This article will give you a simple example of laravel class app http controllers cache not found. let’s discuss laravel cache not found. I explained simply about Class 'App\Http\Controllers\Cache' not found in laravel.

You can solve 'Class "App\Http\Controllers\Cache" 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 a cache with users key using Cache facade. When I run the project then I found 'Class "App\Http\Controllers\Cache" not found' error. you can see bellow screenshot as well.

Issue:

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

use Illuminate\Support\Facades\Cache;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Illuminate\Support\Facades\Cache;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

Cache::put('users', 100, $seconds = 10);

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 CRUD Application Tutorial Example

Read Now β†’
β˜…

Laravel Custom Login and Registration Example

Read Now β†’
β˜…

How to add Default Value of Column in Laravel Migration?

Read Now β†’
β˜…

Laravel Livewire Datatables Example Tutorial

Read Now β†’
β˜…

Laravel Eloquent selectRaw() Query Example

Read Now β†’
β˜…

Laravel Unique Validation With Soft Delete Example

Read Now β†’
β˜…

Laravel Datatables Filter with Dropdown Example

Read Now β†’
β˜…

Laravel Collection SortBy Tutorial with Examples

Read Now β†’
β˜…

Laravel - Please Provide a Valid Cache Path - Solved

Read Now β†’
β˜…

Laravel - This cache store does not support tagging - Solved

Read Now β†’
β˜…

Laravel Clear Cache from Route, View, Config Example

Read Now β†’
β˜…

How to Store Data in Cache in Laravel?

Read Now β†’