Files
firefly-iii/app/View/Components/Lists/Periods.php
T
Sander Dorigo 984c2fe396 New views
2026-06-15 15:38:12 +02:00

29 lines
536 B
PHP

<?php
namespace FireflyIII\View\Components\Lists;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Periods extends Component
{
public array $periods;
/**
* Create a new component instance.
*/
public function __construct(array $periods)
{
$this->periods =$periods;
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.lists.periods');
}
}