Skip to content

Instantly share code, notes, and snippets.

@msurguy
Created April 1, 2013 19:29
Show Gist options
  • Save msurguy/5287095 to your computer and use it in GitHub Desktop.
Save msurguy/5287095 to your computer and use it in GitHub Desktop.
Using Excel Bundle in Laravel
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