@if(\Auth::check() && \Auth::user()->canManageBinshopsBlogPosts())
You are logged in as a blog admin user.
Go To Blog Admin Panel
@endif
@if($category_chain)
@endif
@if(isset($binshopsblog_category) && $binshopsblog_category)
{{$binshopsblog_category->category_name}}
@if($binshopsblog_category->category_description)
{{$binshopsblog_category->category_description}}
@endif
@endif
@forelse($posts as $post)
@include("binshopsblog::partials.index_loop")
@empty
@endforelse
Blog Categories
@if($categories)
@include("binshopsblog::partials._category_partial", [
'category_tree' => $categories,
'name_chain' => $nameChain = ""
])
@else
No Categories
@endif
@if (config('binshopsblog.search.search_enabled') )
@include('binshopsblog::sitewide.search_form')
@endif
@endsection