mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-01 20:14:36 -07:00
39 lines
1.0 KiB
PHP
39 lines
1.0 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\View\Component;
|
|
|
|
class GroupsLarge extends Component
|
|
{
|
|
public LengthAwarePaginator $groups;
|
|
public ?Account $account;
|
|
public bool $showCategory;
|
|
public bool $showBudget;
|
|
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct(LengthAwarePaginator $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');
|
|
}
|
|
}
|