mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-20 14:20:54 +00:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace FireflyIII\View\Components\Elements;
|
|
|
|
use Closure;
|
|
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');
|
|
}
|
|
}
|