Files
firefly-iii/app/View/Components/Lists/Subscriptions.php
T

35 lines
710 B
PHP

<?php
declare(strict_types=1);
namespace FireflyIII\View\Components\Lists;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Subscriptions extends Component
{
public array $bills;
public array $sums;
public array $totals;
/**
* Create a new component instance.
*/
public function __construct(array $bills, array $sums, array $totals)
{
$this->bills = $bills;
$this->sums = $sums;
$this->totals = $totals;
}
/**
* Get the view / contents that represent the component.
*/
public function render(): Closure|string|View
{
return view('components.lists.subscriptions');
}
}