mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-19 22:01:01 +00:00
31 lines
563 B
PHP
31 lines
563 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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(): Closure|string|View
|
|
{
|
|
return view('components.lists.periods');
|
|
}
|
|
}
|