ItSolutionStuff.com

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

By Hardik Savani • April 16, 2024
Laravel

This tutorial will give you example of laravel file class not found. I’m going to show you about Laravel Class "App\Http\Controllers\File" not found. you'll learn laravel file password class not found. I’m going to show you about laravel file not found. You just need to some step to done Class 'App\Http\Controllers\File' not found in laravel.

You can solve 'Class "App\Http\Controllers\File" 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 get all files of folder using File. When I run the project then I found 'Class "App\Http\Controllers\File" not found' error. you can see bellow screenshot as well.

Issue:

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

use Illuminate\Support\Facades\File;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Illuminate\Support\Facades\File;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$files = File::files('images');

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 Send Mail using Gmail SMTP Server

Read Now →
ā˜…

Laravel Blade Include File Example

Read Now →
ā˜…

Laravel Fullcalendar Example Tutorial

Read Now →
ā˜…

Laravel Carbon Get Previous Month Example

Read Now →
ā˜…

Laravel Livewire Pagination Example

Read Now →
ā˜…

How to Use MySQL View in Laravel?

Read Now →
ā˜…

Laravel Eloquent inRandomOrder() Method Example

Read Now →
ā˜…

Laravel Automatic Daily Database Backup Tutorial

Read Now →
ā˜…

How to Generate PDF with Graph in Laravel?

Read Now →
ā˜…

How to Create File Object from Path in Laravel?

Read Now →
ā˜…

How to Use Bootstrap WYSIHTML5 Editor in Laravel?

Read Now →