Files
HeimerdingerLoL/app/View/Components/Icons/List_all.php
2023-11-15 13:58:12 +01:00

21 lines
350 B
PHP

<?php
namespace App\View\Components\Icons;
use App\Models\SummonerIcon;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class List_all extends Component
{
public function __construct(public SummonerIcon $icons)
{
}
public function render(): View
{
return view('components.icons.list_all');
}
}