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