From 342e895ca3925d7f277db184808d7f77f6d2954a Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Thu, 15 May 2025 11:57:00 +0200 Subject: [PATCH] feat(skin-info): add product schema --- resources/views/skins/show.blade.php | 61 ++++++++++++++++++++++++++-- 1 file changed, 58 insertions(+), 3 deletions(-) diff --git a/resources/views/skins/show.blade.php b/resources/views/skins/show.blade.php index ba4eba1..adfe1cd 100644 --- a/resources/views/skins/show.blade.php +++ b/resources/views/skins/show.blade.php @@ -1,13 +1,68 @@ @extends('layouts.app') @section('title', $skin->skin_name . ' • Heimerdinger.LoL') -@section('description', 'Heimerdinger.LoL: ' . $skin->skin_name . ' details showing all the information about -the ' . $skin->rarity . ' ' . $skin->champion->name . ' skin. ' . substr($skin->lore, 0, 50) . '...') +@section('description', + 'Heimerdinger.LoL: ' . + $skin->skin_name . + ' details showing all the information about + the ' . + $skin->rarity . + ' ' . + $skin->champion->name . + ' skin. ' . + substr($skin->lore, 0, 50) . + '...') @section('content') - + @endsection @push('bottom_scripts') @vite('resources/js/vert-scroll.js') + @endpush