Files
HeimerdingerLoL/app/View/Components/Emotes/List_all.php
dependabot[bot] 8199a5d6f3 Dusting
2024-07-01 03:22:52 +00:00

18 lines
345 B
PHP

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