mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
- Refactored the sales index view to extend the 'layouts.app' blade template. - Updated the title and description sections with appropriate content. - Removed unnecessary meta tags related to icons, OpenGraph, and Twitter. - Added a new section for content and included the 'x-sales.current_sales' component. This commit improves the structure and content of the sales index page.
10 lines
335 B
PHP
10 lines
335 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Heimerdinger.LoL • Sale Rotation')
|
|
@section('description', 'Explore the current LoL Sale on Heimerdinger.LoL. Find detailed information on what champions
|
|
and skins are currently on sale and grab a good deal!')
|
|
|
|
@section('content')
|
|
<x-sales.current_sales :sales="$sales"/>
|
|
@endsection
|