mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
20 lines
350 B
PHP
20 lines
350 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Skins;
|
|
|
|
use App\Models\ChampionSkin;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class Grid_info extends Component
|
|
{
|
|
public function __construct(public ChampionSkin $skin)
|
|
{
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('components.skins.grid_info');
|
|
}
|
|
}
|