1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Export/CSV/InvoiceExport.php

39 lines
859 B
PHP
Raw Normal View History

2020-12-14 05:59:15 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-12-14 05:59:15 +01:00
*
* @license https://opensource.org/licenses/AAL
*/
2020-12-14 11:43:07 +01:00
namespace App\Export\CSV;
2020-12-14 05:59:15 +01:00
2020-12-14 06:03:23 +01:00
use App\Models\Company;
2020-12-14 11:43:07 +01:00
use Excel;
2020-12-14 06:03:23 +01:00
2020-12-14 05:59:15 +01:00
class InvoiceExport
{
2020-12-16 12:52:40 +01:00
private $company;
2020-12-14 06:03:23 +01:00
2020-12-16 12:52:40 +01:00
public function __construct(Company $company)
{
$this->company = $company;
}
2020-12-14 06:03:23 +01:00
2020-12-16 12:52:40 +01:00
public function export()
{
// $fileName = 'test.csv';
// $data = $this->company->invoices->get();
2020-12-14 06:03:23 +01:00
2020-12-14 11:43:07 +01:00
// return Excel::create($fileName, function ($excel) use ($data) {
// $excel->sheet('', function ($sheet) use ($data) {
// $sheet->loadView('export', $data);
// });
// })->download('csv');
2020-12-16 12:52:40 +01:00
}
}