@extends('layouts.user') @section('content')

{{$category->name }}

{!!$setdata['top_ad']!!}
@foreach ($posts as $post)
{{$post->created_at->format('d')}}
{{$post->title}}
{{ Str::limit($post->title, 40) }}

{{ Str::limit($post->description, 90) }}

@endforeach
{{$posts->links("pagination::bootstrap-4")}}
{!!$setdata['bottom_ad']!!}
@include('frontend.sidebar')
@endsection