@extends('site.layouts.' . $pageTemplate) @section('title', $category->name . ' | Inverted Line' ?? 'Inverted Line') @push('styles') @endpush @section('contents')
@foreach ($posts as $post)

{{ $post->title }}

@if ($post->featured_image) {{ pathinfo($post->featured_image, PATHINFO_FILENAME) }} @else No Image @endif
@endforeach
@if ($posts->hasPages())
{!! $posts->onEachSide(2)->links() !!}
@endif
@endsection