Files
firefly-iii/app/View/Components/Lists/GroupsLarge.php
T
2026-07-09 18:58:26 +02:00

40 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
namespace FireflyIII\View\Components\Lists;
use Closure;
use FireflyIII\Models\Account;
use Illuminate\Contracts\View\View;
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;
use Illuminate\View\Component;
class GroupsLarge extends Component
{
public LengthAwarePaginator|Collection $groups;
public ?Account $account;
public bool $showCategory;
public bool $showBudget;
/**
* Create a new component instance.
*/
public function __construct(LengthAwarePaginator| Collection $groups, ?bool $showCategory, ?bool $showBudget, ?Account $account = null)
{
$this->groups = $groups;
$this->account = $account;
$this->showCategory = $showCategory ??false;
$this->showBudget = $showBudget ?? false;
}
/**
* Get the view / contents that represent the component.
*/
public function render(): Closure | string | View
{
return view('components.lists.groups-large');
}
}