Files
firefly-iii/app/View/Components/Elements/TransactionRunningBalance.php
T
Sander Dorigo 2d5c8a2bde Fix warnings
2026-06-19 05:11:37 +02:00

48 lines
1.2 KiB
PHP

<?php
namespace FireflyIII\View\Components\Elements;
use Closure;
use FireflyIII\Models\Account;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class TransactionRunningBalance extends Component
{
public bool $balanceDirty;
public array $currency;
public array $foreign;
public array $source;
public array $destination;
public string $type;
public null|Account $account;
/**
* Create a new component instance.
*/
public function __construct(
bool|null $balanceDirty,
array $source,
array $destination,
array $currency,
array $foreign, string $type,
null|Account $account
)
{
$this->balanceDirty = $balanceDirty ?? false;
$this->currency = $currency;
$this->foreign= $foreign;
$this->type = $type;
$this->source = $source;
$this->destination = $destination;
$this->account = $account;
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.elements.transaction-running-balance');
}
}