mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
feat: icon list + search functionality
This commit is contained in:
20
app/View/Components/Icons/List_all.php
Normal file
20
app/View/Components/Icons/List_all.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user