mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-20 06:10:37 +00:00
40 lines
941 B
PHP
40 lines
941 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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 ?string $pcAmount;
|
|
public ?Account $account;
|
|
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct(string $type, array $amount, array $foreign, ?string $pcAmount, ?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(): Closure|string|View
|
|
{
|
|
return view('components.elements.transaction-amount');
|
|
}
|
|
}
|