mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
19 lines
346 B
PHP
19 lines
346 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Champions;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class List_all extends Component
|
|
{
|
|
public function __construct(public array $champions, public array $roles)
|
|
{
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('components.champions.list_all');
|
|
}
|
|
}
|