Files
HeimerdingerLoL/resources/views/home.blade.php
Rico van Zelst 2294140fce refactor(views): Update home.blade.php and app.blade.php
- Refactored the home.blade.php file to extend the layouts.app.blade.php file.
- Moved the title and description sections to their respective yield sections in app.blade.php.
- Removed duplicate code from home.blade.php.

This commit improves code organization and removes duplication in the views.
2023-12-08 17:09:46 +01:00

14 lines
472 B
PHP

@extends('layouts.app')
@section('title', 'Heimerdinger.LoL • Home')
@section('description', 'Explore League of Legends champions, skins, and game assets on Heimerdinger.LoL.
Your ultimate source for in-depth information on LoL gaming. Dive in now!')
@section('content')
<x-home.features/>
@if ($upcomingSkins != [])
<x-home.upcoming_skins :upcomingSkins="$upcomingSkins"/>
@endif
<x-home.recent_skins :latestSkins="$latestSkins"/>
@endsection