mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-20 14:20:54 +00:00
38 lines
922 B
PHP
38 lines
922 B
PHP
<?php
|
|
|
|
namespace FireflyIII\View\Components\Elements;
|
|
|
|
use Closure;
|
|
use FireflyIII\Models\Account;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class TransactionAmount extends Component
|
|
{
|
|
public string $type;
|
|
public array $amount;
|
|
public array $foreign;
|
|
public null|string $pcAmount;
|
|
public null|Account $account;
|
|
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct(string $type,array $amount, array $foreign, null|string $pcAmount, null|Account $account)
|
|
{
|
|
$this->type = $type;
|
|
$this->amount = $amount;
|
|
$this->foreign = $foreign;
|
|
$this->account = $account;
|
|
$this->pcAmount = $pcAmount;
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*/
|
|
public function render(): View|Closure|string
|
|
{
|
|
return view('components.elements.transaction-amount');
|
|
}
|
|
}
|