jamal
jamal

Reputation: 183

Does Laravel-Excel has native method of PHP Excel?

I want to use Laravel-Excel, but my concern is which can I use native PHP-Excel method or not, as I have read the documentation. Laravel-Excel is run on of PHP-Excel.

Upvotes: 0

Views: 293

Answers (1)

Sapnesh Naik
Sapnesh Naik

Reputation: 11636

From Laravel-Excel github page:

An eloquent way of importing and exporting Excel and CSV files for Laravel with the power of PHPExcel

So yes, this package is just a wrapper around the PHPExcel package but it adds conveniences for a laravel project as it follows Laravel's own Eloquent model.

Upvotes: 1

Related Questions