Files
firefly-iii/app/View/Components/Transaction/Split.php
T
Sander Dorigo f5f214e7fc New views
2026-06-17 15:22:24 +02:00

29 lines
573 B
PHP

<?php
namespace FireflyIII\View\Components\Transaction;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Split extends Component
{
public array $optionalFields;
/**
* Create a new component instance.
*/
public function __construct(array $optionalFields)
{
$this->optionalFields = $optionalFields;
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.transaction.split');
}
}