@extends('layout') @section('title', 'SoulSize — Mode für alle Größen') @section('description', 'Dein Ratgeber für Plus-Size Mode. Authentische Beratung, ehrliche Empfehlungen und stilvolle Inspiration für große Größen.') @section('content') {{-- Hero Section --}}

Plus-Size Mode Ratgeber

Mode, die
zu dir
passt.

Ehrliche Beratung, echte Empfehlungen und stilvolle Inspiration für große Größen.

{{-- Category Grid --}}
@php $categoryIcons = [ 'damen' => 'female', 'herren' => 'male', 'sport' => 'fitness_center', 'schuhe' => 'ice_skating', 'accessoires' => 'diamond', 'tipps' => 'lightbulb', ]; @endphp
@foreach($categories as $category) @if($category->image) {{ $category->name }} @endif
{{ $categoryIcons[$category->slug] ?? 'category' }}

{{ $category->name }}

{{ $category->description }}

@endforeach
{{-- Featured Articles --}}
Magazin

Die neuesten Trends & Guides

@if(isset($articles) && $articles->count())
@foreach($articles->take(6) as $article)
@if($article->image) {{ $article->title }} @else
article
@endif
@if($article->category) {{ $article->category->name }} @endif {{ $article->published_at?->format('d. M Y') }}
@php $homeCat = $article->category; $homeUrl = $homeCat ? (($homeCat->parent?->parent?->slug ? $homeCat->parent->parent->slug . '/' : '') . ($homeCat->parent?->slug ? $homeCat->parent->slug . '/' : '') . $homeCat->slug . '/' . $article->slug) : $article->slug; @endphp

{{ $article->title }}

{{ $article->excerpt }}

@endforeach
@else
@php $placeholders = [ ['tag' => 'Styling', 'title' => 'Der perfekte Mantel für Herbst/Winter', 'text' => 'Worauf du beim Kauf achten musst, um deine Figur optimal in Szene zu setzen.'], ['tag' => 'Shopping', 'title' => 'Plus-Size Denim Guide 2024', 'text' => 'Von Wide Leg bis Straight Cut: Die besten Jeans-Marken, die wirklich passen.'], ['tag' => 'Office', 'title' => 'Power Dressing: Souverän im Job', 'text' => 'Wie du mit der richtigen Business-Mode Kompetenz und Style ausstrahlst.'], ]; @endphp @foreach($placeholders as $ph)
article
{{ $ph['tag'] }}

{{ $ph['title'] }}

{{ $ph['text'] }}

@endforeach
@endif
{{-- Partner Section --}}

Unsere Partner

Zalando bonprix ASOS CURVE Ulla Popken navabi
@endsection