mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-13 22:36:09 +00:00
33 lines
728 B
PHP
33 lines
728 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace FireflyIII\View\Components\Lists;
|
||
|
|
|
||
|
|
use Closure;
|
||
|
|
use Illuminate\Contracts\View\View;
|
||
|
|
use Illuminate\Pagination\LengthAwarePaginator;
|
||
|
|
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(): View|Closure|string
|
||
|
|
{
|
||
|
|
return view('components.lists.subscriptions');
|
||
|
|
}
|
||
|
|
}
|