mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
18 lines
341 B
PHP
18 lines
341 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Icons;
|
|
|
|
use App\Models\SummonerIcon;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class View_grid extends Component
|
|
{
|
|
public function __construct(public SummonerIcon $icon) {}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('components.icons.view_grid');
|
|
}
|
|
}
|