@extends('layouts.nova.content-layout') @php $hero_title = 'Creator Stories'; $hero_description = 'Articles, tutorials, interviews, and project breakdowns from the Skinbase creator community.'; @endphp @section('page-content')
@if($featured)
@if($featured->cover_url) {{ $featured->title }} @endif
Featured Story

{{ $featured->title }}

{{ $featured->excerpt }}

by @{{ $featured->creator?->username ?? 'unknown' }} • {{ $featured->reading_time }} min read • {{ number_format((int) $featured->views) }} views

@endif

Trending Stories

@foreach($trendingStories as $story) @endforeach

Categories

@foreach($categories as $category) {{ $category['name'] }} @endforeach

Latest Stories

@foreach($latestStories as $story) @endforeach
{{ $latestStories->links() }}
@endsection