mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:30:07 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			872 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			872 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Export\CSV;
 | 
						|
 | 
						|
use App\Models\Company;
 | 
						|
use Excel;
 | 
						|
 | 
						|
class InvoiceExport
 | 
						|
{
 | 
						|
    private $company;
 | 
						|
 | 
						|
    public function __construct(Company $company)
 | 
						|
    {
 | 
						|
        $this->company = $company;
 | 
						|
    }
 | 
						|
 | 
						|
    public function export()
 | 
						|
    {
 | 
						|
        // $fileName = 'test.csv';
 | 
						|
        
 | 
						|
        // $data = $this->company->invoices->get();
 | 
						|
 | 
						|
  //       return Excel::create($fileName, function ($excel) use ($data) {
 | 
						|
  //           $excel->sheet('', function ($sheet) use ($data) {
 | 
						|
  //               $sheet->loadView('export', $data);
 | 
						|
  //           });
 | 
						|
  //       })->download('csv');
 | 
						|
    }
 | 
						|
}
 |