mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
feat: Add streamers to champion show view
- Added loading of streamers data in the champion show view. - Updated ChampionController to load streamers for display.
This commit is contained in:
@@ -3,9 +3,10 @@
|
||||
<div class="flex flex-col space-y-4">
|
||||
<div class="flex flex-col space-y-2">
|
||||
<label for="champion_id" class="text-lg font-semibold text-orange-400">Champion</label>
|
||||
<select name="champion_id" id="champion_id" class="w-full p-2 text-white rounded-md bg-stone-800">
|
||||
<select name="champion_id" required id="champion_id" class="w-full p-2 text-white rounded-md bg-stone-800">
|
||||
<option value="">Select a champion</option>
|
||||
@foreach ($champions as $champion)
|
||||
<option value="{{ $champion->id }}">{{ $champion->name }}</option>
|
||||
<option value="{{ $champion->champion_id }}">{{ $champion->name }}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
@@ -21,7 +22,8 @@
|
||||
</div>
|
||||
<div class="flex flex-col space-y-2">
|
||||
<label for="username" class="text-lg font-semibold text-orange-400">Username</label>
|
||||
<input type="text" name="username" id="username" class="w-full p-2 text-white rounded-md bg-stone-800" />
|
||||
<input type="text" name="username" id="username"
|
||||
class="w-full p-2 text-white rounded-md bg-stone-800" />
|
||||
</div>
|
||||
<div class="flex flex-col space-y-2">
|
||||
<label for="displayname" class="text-lg font-semibold text-orange-400">Display Name</label>
|
||||
|
||||
Reference in New Issue
Block a user