invoice exporter to a seperete class
This commit is contained in:
18
app/Modules/Invoice/Data/InvoiceExcellData.php
Normal file
18
app/Modules/Invoice/Data/InvoiceExcellData.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Modules\Invoice\Data;
|
||||
|
||||
use Carbon\Carbon;
|
||||
|
||||
class InvoiceExcellData
|
||||
{
|
||||
public function __construct(
|
||||
public int|string $number,
|
||||
public Carbon $date,
|
||||
public string $seller_firm_type,
|
||||
public string $seller_firm_name,
|
||||
public string $seller_ssb,
|
||||
public string $seller_bank_name,
|
||||
public string $seller_bank_number,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user