@php $useUnifiedSeo = true; $seo = \App\Support\Seo\SeoDataBuilder::fromArray( app(\App\Support\Seo\SeoFactory::class)->fromViewData(get_defined_vars()) ) ->addJsonLd([ '@context' => 'https://schema.org', '@type' => 'CollectionPage', 'name' => $page_title, 'description' => $page_meta_description, 'url' => $page_canonical, ]) ->build(); @endphp @extends('layouts.nova') @section('content') @php $currentCategory = (string) (request()->route('category') ?? request()->query('category', '')); $storyTabs = [ ['label' => '🔥 Trending', 'href' => '#trending'], ['label' => '🚀 New & Hot', 'href' => '#featured'], ['label' => '⭐ Best', 'href' => '#latest'], ['label' => '🕐 Latest', 'href' => '#latest'], ]; @endphp Write Story
All @foreach($categories as $category) {{ $category['name'] }} @endforeach
@if($featured) @endif

Categories

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

Latest Stories

@foreach($latestStories as $story) @endforeach
{{ $latestStories->links() }}
@endsection @push('scripts') @endpush