@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 ( count($category->posts) > 0 ) @foreach ($category->posts as $post) @include(get_view('components.posts.horizontal'), ['post' => $post]) @endforeach @else
Hiç paylaşım bulunamadı.
@endif
@endsection @section('footer') @endsection