Files
HeimerdingerLoL/resources/views/emotes/index.blade.php
Rico van Zelst b7b3fab027 refactor(emotes): update emotes index view
- Refactored the emotes index view to extend the 'layouts.app' blade template.
- Updated the title and description sections with dynamic content using Blade directives.
- Removed unnecessary meta tags related to favicon, OpenGraph, and Twitter.
- Added a new section for content and included the 'x-emotes.list_all' component.

This commit improves the structure and organization of the emotes index view by utilizing reusable components and dynamic content.
2023-12-08 17:41:33 +01:00

10 lines
339 B
PHP

@extends('layouts.app')
@section('title', 'Heimerdinger.LoL • Emotes')
@section('description', 'Explore all LoL Emotes on Heimerdinger.LoL. Find detailed information on popular emotes such as
Dab Pengu, Bee Mad, Little Camper, Super Shy, PENGUMODE and more!')
@section('content')
<x-emotes.list_all :emotes="$emotes"/>
@endsection