@extends('layouts.nova.content-layout') @php $hero_title = ucfirst(str_replace('_', ' ', $category)) . ' Stories'; $hero_description = 'Stories in the ' . str_replace('_', ' ', $category) . ' category.'; @endphp @section('page-content')
@foreach($categories as $item) {{ $item['name'] }} @endforeach
@if($stories->isNotEmpty())
@foreach($stories as $story) @endforeach
{{ $stories->links() }}
@else
No stories found in this category.
@endif
@endsection