@extends('ecommerce.default') @section('content') Categorias @foreach($categoriasPost as $c) {{$c->nome}} ({{sizeof($c->posts)}}) @endforeach Posts recentes @foreach($postsRecentes as $p) {{$p->titulo}} {{ \Carbon\Carbon::parse($p->created_at)->format('d/m/Y H:i')}} @endforeach {!! $post->texto !!} {{$post->autor->nome}} {{$post->autor->tipo}} Categoria: {{$post->categoria->nome}} @if($post->tags != "") Tags: {{$post->tags}} @endif @if($default['config']['link_facebook'] != "") @endif @if($default['config']['link_twitter'] != "") @endif @if($default['config']['link_instagram'] != "") @endif @endsection