Add new layout stuff.

This commit is contained in:
James Cole
2026-05-21 19:04:18 +02:00
parent a86039aa78
commit 9ccb8e8527
17 changed files with 1811 additions and 33 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace FireflyIII\View\Components\Layout;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class FavIcons extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.layout.fav-icons');
}
}
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace FireflyIII\View\Components\Lists;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class GroupsTiny extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.lists.groups-tiny');
}
}