mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-20 06:10:37 +00:00
35 lines
769 B
PHP
35 lines
769 B
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;
|
|
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct(LengthAwarePaginator $groups, ?Account $account = null)
|
|
{
|
|
$this->groups = $groups;
|
|
$this->account = $account;
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*/
|
|
public function render(): Closure|string|View
|
|
{
|
|
return view('components.lists.groups-large');
|
|
}
|
|
}
|