@extends(get_view('index')) @section('title'){{ $category->content->name ?? '' }} - @endsection @section('header') @endsection @section('content') @include(get_view('components.pages.page-title'), ['title' => ($category->content->name ?? '')])
@if ( get_blog_categories_main() )

{{ __('Kategoriler') }}

@foreach (get_blog_categories_main() as $item) {{ ($item->content->name ?? '-') }} @endforeach
@endif
@if ( count($category->posts) > 0 ) @foreach ($category->posts as $post) @endforeach @else @include(get_view('components.errors.post-not-found')) @endif
@endsection @section('footer') @endsection