invoice exporter to a seperete class

This commit is contained in:
2024-11-10 00:23:01 +05:00
parent 7ae9123eca
commit 93092f2f14
10 changed files with 244 additions and 91 deletions

View 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,
) {}
}