Files
HeimerdingerLoL/resources/views/champions/show.blade.php
Rico van Zelst 40fada31bd feat(views): update champions index and show views
- Updated the `index.blade.php` view to extend the `layouts.app` template and added a title, description, and content section.
- Added a new script (`lane-filter.js`) to be included in the `top_scripts` stack.
- Updated the `show.blade.php` view to extend the `layouts.app` template and added a title, description, and content section.
- Added a new script (`vert-scroll.js`) to be included in the `bottom_scripts` stack.
2023-12-08 17:46:45 +01:00

15 lines
468 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"/>
@endsection
@push('bottom_scripts')
@vite('resources/js/vert-scroll.js')
@endpush