2020-12-14 05:59:15 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @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
|
|
|
}
|
|
|
|
}
|