Created
April 1, 2013 19:29
-
-
Save msurguy/5287095 to your computer and use it in GitHub Desktop.
Using Excel Bundle in Laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Route::get('excel', function(){ | |
$objPHPExcel = new PHPExcel(); | |
$sheet = $objPHPExcel->getActiveSheet(); | |
$sheet->setCellValue('A1','Test value'); | |
$writer = new PHPExcel_Writer_Excel5($objPHPExcel); | |
$writer->save("test.xls"); | |
return Response::download('test.xls', 'test.xls'); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment