mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
21 lines
416 B
PHP
21 lines
416 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Skins;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
use Illuminate\Pagination\LengthAwarePaginator as Paginator;
|
|
|
|
class Paginatedlist extends Component
|
|
{
|
|
|
|
public function __construct(public Paginator $skins, public array $rarityColor)
|
|
{
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('components.skins.paginatedlist');
|
|
}
|
|
}
|