mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
- Added loading of streamers data in the champion show view. - Updated ChampionController to load streamers for display.
15 lines
492 B
PHP
15 lines
492 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', $champion->name . ' • Heimerdinger.LoL')
|
|
@section('description', 'Heimerdinger.LoL: ' . $champion->name . ' details showing all the information you need to know
|
|
about ' . $champion->name . ', ' . $champion->title . '. ' . substr($champion->lore, 0, 50) . '...')
|
|
|
|
@section('content')
|
|
<x-champions.grid_info :champion="$champion" :streamers="$streamers"/>
|
|
@endsection
|
|
|
|
@push('bottom_scripts')
|
|
@vite('resources/js/vert-scroll.js')
|
|
@endpush
|
|
|