ItSolutionStuff.com

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

By Hardik Savani β€’ April 16, 2024
Laravel

This example is focused on laravel arr class not found. This post will give you simple example of Laravel Class "App\Http\Controllers\Arr" not found. let’s discuss about laravel class app http controllers arr not found. I explained simply step by step laravel arr not found. You just need to some step to done Class 'App\Http\Controllers\Arr' not found in laravel.

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

Issue:

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

use Illuminate\Support\Arr;

Example:

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

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Illuminate\Support\Arr;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$array = ['Hardik', 'Vimal', 'Harshad', 'Paresh'];

$sorted = Arr::sort($array);

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 Sum Query with Where Condition Example

Read Now β†’
β˜…

How to Get Month Wise Data in Laravel?

Read Now β†’
β˜…

Laravel Case Sensitive Query Search Example

Read Now β†’
β˜…

Laravel Eloquent Select Single Column to Array Example

Read Now β†’
β˜…

Laravel Inertia JS Pagination Example

Read Now β†’
β˜…

How to use Laravel Model Observers?

Read Now β†’
β˜…

Laravel Livewire Sweetalert Example

Read Now β†’
β˜…

Laravel Livewire Select2 Dropdown Example

Read Now β†’
β˜…

Laravel Carbon Get Next Month Example

Read Now β†’
β˜…

How to Group By with Order By Desc in Laravel?

Read Now β†’
β˜…

Laravel Collection Has Method Example

Read Now β†’