@extends("layouts.app",['title'=>$title]) @section("content") {{--https://webdevetc.com/laravel/packages/blogetc-blog-system-for-your-laravel-app/help-documentation/laravel-blog-package-blogetc#guide_to_views--}}
@if(\Auth::check() && \Auth::user()->canManageBlogEtcPosts())

You are logged in as a blog admin user.
Go To Blog Admin Panel

@endif @if(isset($blogetc_category) && $blogetc_category)

Viewing Category: {{$blogetc_category->category_name}}

@if($blogetc_category->category_description)

{{$blogetc_category->category_description}}

@endif @endif @forelse($posts as $post) @include("blogetc::partials.index_loop") @empty
No posts
@endforelse @if(!is_array($posts))
{{$posts->appends( [] )->links()}}
@endif @include("blogetc::sitewide.search_form")
@endsection