


Laravel is one of the outstanding PHP frameworks in the industry. Its powerful functions and easy-to-use API make it very popular among developers. In actual development, we often need to import and export data, and CSV, as a widely used data format, has also become one of the commonly used import and export formats. This article will introduce how to use the Laravel Excel extension to import and export CSV files.
1. Install Laravel Excel
First, we need to use Composer to install Laravel Excel:
composer require maatwebsite/excel
After the installation is complete, we need to add in the config/app.php file Add the following code to the providers array:
MaatwebsiteExcelExcelServiceProvider::class,
Add the following code to the aliases array:
'Excel' => MaatwebsiteExcelFacadesExcel::class,
2. Export the CSV file
Suppose we have a user model User, which has A getExportData() method that returns the data to be exported. Then we can write the export code like this:
use MaatwebsiteExcelFacadesExcel; use AppModelsUser; class UserController extends Controller { public function exportUsers() { return Excel::download(new UserExport(), 'users.csv'); } } class UserExport implements FromQuery, WithHeadings { public function query() { return User::query(); } public function headings(): array { return [ 'ID', 'Name', 'Email', 'Created At', 'Updated At', ]; } }
In the above code, we use Laravel Excel’s FromQuery and WithHeadings interfaces to quickly export data to a CSV file. The FromQuery interface needs to implement a query() method to return the data set to be exported; the WithHeadings interface needs to implement a headings() method to return the header information of the CSV file. In the export operation, we use the Excel::download() method to download, passing in two parameters: the export class UserExport and the file name users.csv.
When users access this route, they can directly download the exported CSV file.
3. Import CSV files
To import CSV files, we need to write an import class and implement the FromCollection interface.
Suppose we have a User import model with an importUsers() method that accepts an uploaded CSV file and imports the data into the database. We can write like this:
use MaatwebsiteExcelFacadesExcel; use AppModelsUser; class UserController extends Controller { public function importUsers(Request $request) { $request->validate([ 'file' => 'required|mimes:csv,txt', ]); $path = $request->file('file')->getRealPath(); $data = Excel::import(new UserImport(), $path); return redirect()->back()->with('success', '导入成功'); } } class UserImport implements FromCollection { public function collection(Collection $rows) { foreach ($rows as $row) { User::create([ 'name' => $row[0], 'email' => $row[1], ]); } } }
In the above code, we define a UserImport class and implement the FromCollection interface. The collection() method here is used to process the data imported from the CSV file and convert it into a Collection object. In this example, we simply create a user and use the first column in the file as the username and the second column as the email address.
When implementing the import function, we need to use the Excel::import() method to pass in the import class and file path. This method will return an array of imported data, which we can pass into other processors.
4. Summary
Using the Laravel Excel extension, we can easily import and export CSV data into Laravel applications. In the above example, we used the FromQuery, WithHeadings and FromCollection interfaces to export and import data. Of course, Laravel Excel also supports other interfaces, such as FromArray, WithTitle, WithMapping, etc. In actual projects, we can choose the appropriate interface to complete specific data import and export work based on actual needs.
The above is the detailed content of Laravel development: How to import and export CSV files using Laravel Excel?. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于折叠表格的相关问题,就是分类汇总的功能,这样查看数据会非常的方便,下面一起来看一下,希望对大家有帮助。

在之前的文章《实用Excel技巧分享:利用 数据透视表 来汇总业绩》中,我们学习了下Excel数据透视表,了解了利用数据透视表来汇总业绩的方法。而今天我们来聊聊怎么计算时间差(年数差、月数差、周数差),希望对大家有所帮助!

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于AGGREGATE函数的相关内容,该函数用法与SUBTOTAL函数类似,但在功能上比SUBTOTAL函数更加强大,下面一起来看一下,希望对大家有帮助。

在之前的文章《实用Word技巧分享:聊聊你没用过的“行号”功能》中,我们了解了Word中你肯定没用过的"行号”功能。今天继续实用Word技巧分享,看看Excel表格怎么借用Word进行分栏打印,快来收藏使用吧!

在之前的文章《实用Excel技巧分享:原来“定位功能”这么有用!》中,我们了解了定位功能的妙用。而今天我们聊聊合并后的单元格如何实现筛选功能,分享一种复制粘贴和方法解决这个问题,另外还会给大家分享一种合并单元格的不错的替代方式。

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于zenmm制作倒计时牌的相关内容,使用Excel中的日期函数结合按指定时间刷新的VBA代码,即可制作出倒计时牌,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于如何使用函数寻找总和为某个值的组合的问题,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Excel的相关知识,其中主要介绍了关于XLOOKUP函数的相关知识,包括了常规查询、逆向查询、返回多列、自动除错以及近似查找等内容,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
