feat: champion list

This commit is contained in:
Rico van Zelst
2023-11-07 17:28:37 +01:00
parent 42955bea4f
commit 4445bc1478
14 changed files with 187 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
<?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 function render(): View
{
return view('components.champions.list_all');
}
}