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