Files
HeimerdingerLoL/resources/views/sales/index.blade.php
Rico van Zelst 031883ad36 refactor(sales): update sales index view
- 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.
2023-12-08 17:34:55 +01:00

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