Reputation: 183
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
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