Read Excel Content Using Laravel

A detailed guide on reading Excel file content in Laravel using the Laravel Excel package. This article provides sample code, a step-by-step explanation, and instructions for installing the necessary package.

We will use the Laravel Excel package to read data from an Excel file. The code will open the file, read each row and column, and display the data on a web page.

Step 1: Install the Laravel Excel package

composer require maatwebsite/excel

Step 2: Reading the Excel file

Create a controller with the following command:

php artisan make:controller ExcelController

In ExcelController.php:

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Maatwebsite\Excel\Facades\Excel;

class ExcelController extends Controller
{
    public function import()
    {
        $path = storage_path('app/public/sample.xlsx');
        $data = Excel::toArray([], $path);

        // Display the content of the Excel file
        foreach ($data[0] as $row) {
            echo implode("\t", $row) . "<br>";
        }
    }
}

Step 3: Define a route for the import method In the web.php file:

use App\Http\Controllers\ExcelController; Route::get('/import-excel', [ExcelController::class, 'import']);

Detailed explanation

  1. composer require maatwebsite/excel: Installs the Laravel Excel package.
  2. use Maatwebsite\Excel\Facades\Excel;: Uses the Excel facade provided by the Laravel Excel package.
  3. $path = storage_path('app/public/sample.xlsx');: Sets the path to the Excel file.
  4. $data = Excel::toArray([], $path);: Reads the Excel file content into the $data variable.
  5. foreach ($data[0] as $row): Iterates through each row of the first sheet.
  6. echo implode("\t", $row) . "<br>";: Prints each row's content on the screen.

System Requirements

  • PHP: 7.3 or later
  • Laravel: 8.x or later
  • Laravel Excel package: Version 3.1 or newer

How to install the libraries needed to run the Laravel code above

  1. Run composer require maatwebsite/excel to install the Laravel Excel package.
  2. Ensure the Excel file you want to read is located in the storage/app/public directory.

Tips

  • Make sure to check file permissions for the storage directory before attempting to read the file.
  • Utilize Laravel Excel's methods like toCollection() or toArray() for more flexible data handling.


Related

How to implement Facebook login in Laravel

A step-by-step guide on how to integrate Facebook login into a Laravel application using the Socialite library. The article covers Facebook OAuth configuration and how to handle the login process in Laravel.
All methods to UPDATE data in a MySQL database using Laravel

A comprehensive guide on how to update data in a MySQL database using Laravel, covering both Eloquent ORM and Query Builder methods.
How to implement Google login in Laravel

A detailed guide on how to integrate Google login functionality in Laravel using the Laravel Socialite package. This article will guide you through setting up Google API and configuring it in Laravel.
All ways to insert data into MySQL database in Laravel

Explore different methods to insert data into a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
How to use nested Where functions in Laravel

This article summarizes the ways to use nested `where` functions in Laravel, helping readers understand how to construct complex queries in their applications.
All ways to SELECT data from a MySQL database in Laravel

Explore various methods to select data from a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
How to convert a Markdown string to HTML using Laravel

A guide on how to convert a Markdown string to HTML in Laravel using the `league/commonmark` library, making the conversion process simple and effective.
How to Write Content to an Excel File in Laravel

A step-by-step guide on how to write content to an Excel file in Laravel using the Maatwebsite Excel library, allowing you to easily export data from your Laravel application to an Excel file.
Generating Captcha in Laravel

A detailed guide on how to create a Captcha in Laravel to protect forms from spam and verify user authenticity. This tutorial will help you integrate Captcha into your Laravel project with ease.
Guide to integrating VNPAY in Laravel with a Sandbox account

A detailed guide on how to integrate VNPAY into a Laravel project using VNPAY's Sandbox account to process online payments, including configuration, payment URL creation, handling callback responses, and creating the interface.

main.add_cart_success