mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
- 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.
15 lines
468 B
PHP
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
|
|
|