Files
HeimerdingerLoL/resources/views/champions/show.blade.php
Rico van Zelst e6dcfacb31 feat: Add streamers to champion show view
- Added loading of streamers data in the champion show view.
- Updated ChampionController to load streamers for display.
2024-03-23 02:48:08 +01:00

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