@extends('front.partials.front') @section('content')

{{ $category->name }}

@include('/front/partials/search')
@if($category->posts->count() > 0) @foreach ($category->posts as $post)

{{$post->title}}

{{$post->title}}
@endforeach @else

Sorry, No Post Found

@endif
@endsection