0

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.

Karl Hill
  • 12,937
  • 5
  • 58
  • 95
jamal
  • 183
  • 1
  • 3
  • 15
  • If you want to use Laravel-Excel, use Laravel-Excel. If you want to use PHPExcel directly, use PHPExcel directly. What is the problem? – brettwhiteman Sep 23 '17 at 05:30
  • I have used PHPExcel now I want to use Laravel-Excel thus I asked, that dose Laravel-Excel have ability or native method or no ? – jamal Sep 23 '17 at 07:09

1 Answers1

1

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.

Sapnesh Naik
  • 11,011
  • 7
  • 63
  • 98