A simple Laravel abstraction to the PHPSpreadsheet (previously PHPExcel) library, ideal for writing XLSX (Excel) files.
composer require osmaviation/spreadsheet
$filename = 'my-filename.xlsx';
resolve('spreadsheet')->create($filename, function ($excel) {
$excel->sheet('Worksheet', function ($sheet) {
$sheet->fromArray([
'Foo',
'Bar',
], null, 'A1', true, false);
});
});
use OSMAviation\Spreadsheet\Facades\Spreadsheet;
$filename = 'my-filename.xlsx';
Spreadsheet::create($filename, function ($excel) {
$excel->sheet('Worksheet', function ($sheet) {
$sheet->fromArray([
'Foo',
'Bar',
], null, 'A1', true, false);
});
});
use OSMAviation\Spreadsheet\PhpSpreadsheet as Spreadsheet;
class MyController
{
public function store(Spreadsheet $spreadsheet)
{
$filename = 'my-filename.xlsx';
$spreadsheet->create($filename, function ($excel) {
$excel->sheet('Worksheet', function ($sheet) {
$sheet->fromArray([
'Foo',
'Bar',
], null, 'A1', true, false);
});
});
}
}
$filename = 'some-folder/my-filename.xlsx';
Spreadsheet::create($filename, function ($excel) {
$excel->sheet('Worksheet', function ($sheet) {
// $sheet will be a PhpOffice\PhpSpreadsheet\Worksheet\Worksheet instance
$sheet->fromArray([
'Foo',
'Bar',
], null, 'A1', true, false);
});
})->store('local');
Spreadsheet::load($filename, function ($excel) {
$excel->sheet('Some existing sheet', function($sheet) {
//
});
});
You can also pass the disk name as the second argument to the load
method to load files from a different file system.
Spreadsheet::load($filename, 's3', function ($excel) {
$excel->sheet('Some sheet', function($sheet) {
//
});
});
The callback for the create method will provide an instance of OSMAviation\Spreadsheet\Spreadsheet
which is a
convenience layer for creating worksheets. You can access the vendor spreadsheet by using the getSpreadsheet
method.
Spreadsheet::create($filename, function ($excel) {
$vendorSheet = $excel->getSpreadsheet(); // returns a PhpOffice\PhpSpreadsheet\Spreadsheet instance
})->store('local');