Files
telekeci/app/Modules/Invoice/Data/InvoiceExcellData.php

19 lines
399 B
PHP

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