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

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');
}
}