@extends('layouts.frontend.app') @section('content')

Productos da categoria {{ $category->name }}

@if ($posts->count() > 0) @foreach ($posts as $post)
{{$post->image}}
{{ $post->created_at->diffForHumans() }}
@endforeach @else

Sem productos disponíveis para {{ $category->name }}

@endif
{{ $posts->links()}}
@include('layouts.frontend.partials.sidebar')
@endsection