mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-01 20:14:36 -07:00
34 lines
722 B
PHP
34 lines
722 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
namespace FireflyIII\View\Components\Lists;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\View\Component;
|
|
|
|
class PiggyBankEvents extends Component
|
|
{
|
|
public Collection $events;
|
|
public bool $showPiggyBank;
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct(Collection $events, bool $showPiggyBank)
|
|
{
|
|
$this->events = $events;
|
|
$this->showPiggyBank = $showPiggyBank;
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*/
|
|
public function render(): View|Closure|string
|
|
{
|
|
return view('components.lists.piggy-bank-events');
|
|
}
|
|
}
|