Class 'App\Http\Controllers\ZipArchive' not found in Laravel

349 views 8 months ago Laravel

While working on Zip file in your Laravel application, you might need to use PHP in-built class ZipArchive. When you use class in your controller file, you might get error "Class 'App\Http\Controllers\ZipArchive' not found".

To use ZipArchive class in PHP, you need to have installed and enabled zip extension which is which uses libzip. You can simply install zip extension with your enabled PHP version.

PHP7.4

sudo apt-get install php7.4-zip

PHP8.0

sudo apt-get install php8.0-zip

And don't forget to restart apache server to implement changes.

sudo service apache2 restart

Now refresh the page and error should have gone. If you still get the error, make use you have use class above else Laravel will try to find class in your Controllers directory.

<?php
namespace App\Http\Controllers;
use ZipArchive;
/**
 * Show the application homepage.
 *
 * @return \Illuminate\Http\Response
 */
public function index()
{
    ...
    $zip = new ZipArchive;
    ...
}

I hope this will help you.

Author : Harsukh Makwana
Harsukh Makwana

Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]