mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-01 04:00:36 -07:00
32 lines
632 B
PHP
32 lines
632 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 Attachments extends Component
|
|
{
|
|
public Collection $attachments;
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct(Collection $attachments)
|
|
{
|
|
$this->attachments = $attachments;
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*/
|
|
public function render(): View|Closure|string
|
|
{
|
|
return view('components.lists.attachments');
|
|
}
|
|
}
|